We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f57aa6 commit c11b3e2Copy full SHA for c11b3e2
.github/workflows/test.yml
@@ -105,10 +105,8 @@ jobs:
105
- name: Test
106
run: |
107
uv sync --extra dev --extra adapters # --extra adapters will pull in nac-test-pyats-common
108
- # Run unit and integration tests sequentially
109
- uv run pytest tests/unit/ tests/integration/
110
- # Run E2E tests in parallel (--dist loadscope keeps test classes together)
111
- uv run pytest tests/e2e/ -n auto --dist loadscope
+ # Run tests in parallel (--dist loadscope keeps test classes together, this is critical for e2e tests)
+ uv run pytest tests/ -n auto --dist loadscope
112
113
notification:
114
name: Notification
0 commit comments