We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0ba6961 + 6a60b2e commit f34b4a1Copy full SHA for f34b4a1
Makefile
@@ -97,6 +97,12 @@ test:
97
python3 -c "import pytest" > /dev/null 2>&1 || python3 -m pip install pytest
98
python3 -m pytest -qq
99
100
+.PHONY: test-p
101
+test-p:
102
+ python3 -c "import xdist" > /dev/null 2>&1 || python3 -m pip install pytest-xdist
103
+ python3 -m pytest -qq -n auto
104
+
105
106
.PHONY: valgrind
107
valgrind:
108
python3 -c "import pytest_valgrind" > /dev/null 2>&1 || python3 -m pip install pytest-valgrind
pyproject.toml
@@ -70,6 +70,7 @@ optional-dependencies.tests = [
70
"pytest",
71
"pytest-cov",
72
"pytest-timeout",
73
+ "pytest-xdist",
74
"trove-classifiers>=2024.10.12",
75
]
76
0 commit comments