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 38b701a commit 49a54d7Copy full SHA for 49a54d7
1 file changed
noxfile.py
@@ -46,6 +46,7 @@ def tests(session: nox.Session) -> None:
46
"PYTHONWARNDEFAULTENCODING": "1",
47
"COVERAGE_FILE": coverage_file,
48
}
49
+ parallel = [] if sys.platform.startswith("win32") else ["--numprocesses=auto"]
50
51
session.create_tmp() # Fixes permission errors on Windows
52
session.install(*PYPROJECT["dependency-groups"]["test"], "uv")
@@ -57,7 +58,7 @@ def tests(session: nox.Session) -> None:
57
58
"run",
59
"-m",
60
"pytest",
- "--numprocesses=auto",
61
+ *parallel,
62
63
"not conda",
64
*session.posargs,
0 commit comments