We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71f5609 commit dd1eb88Copy full SHA for dd1eb88
.github/workflows/smoketests.yml
@@ -49,7 +49,8 @@ jobs:
49
50
- name: Run smoke tests (pytest via uv)
51
env:
52
- # Force sequential to avoid overloading remote resources
53
- PYTEST_ADDOPTS: "-n 1 -m smoketest"
+ # Use 2 workers to run files in parallel.
+ # Tests within a file are run sequentially.
54
+ PYTEST_ADDOPTS: "-n 2 -m smoketest"
55
run: |
56
uv run pytest -q -vv tests/smoketests
0 commit comments