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.
1 parent 3c71559 commit 4d0678cCopy full SHA for 4d0678c
Makefile
@@ -95,7 +95,13 @@ sdist:
95
.PHONY: test
96
test:
97
python3 -c "import pytest" > /dev/null 2>&1 || python3 -m pip install pytest
98
- python3 -m pytest -qq
+ python3 -m pytest -qq Tests/
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 Tests/
104
105
106
.PHONY: valgrind
107
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