Remove Tests/ path arg, this is already configured

This commit is contained in:
wiredfool 2025-05-30 10:27:11 +01:00
parent bcf1f85b30
commit 6a60b2e6dd

View File

@ -95,12 +95,12 @@ sdist:
.PHONY: test .PHONY: test
test: test:
python3 -c "import pytest" > /dev/null 2>&1 || python3 -m pip install pytest python3 -c "import pytest" > /dev/null 2>&1 || python3 -m pip install pytest
python3 -m pytest -qq Tests/ python3 -m pytest -qq
.PHONY: test-p .PHONY: test-p
test-p: test-p:
python3 -c "import xdist" > /dev/null 2>&1 || python3 -m pip install pytest-xdist python3 -c "import xdist" > /dev/null 2>&1 || python3 -m pip install pytest-xdist
python3 -m pytest -qq -n auto Tests/ python3 -m pytest -qq -n auto
.PHONY: valgrind .PHONY: valgrind