Skip to content

Commit c11b3e2

Browse files
committed
run all tests in parallel, not only e2e
1 parent 8f57aa6 commit c11b3e2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,8 @@ jobs:
105105
- name: Test
106106
run: |
107107
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
108+
# Run tests in parallel (--dist loadscope keeps test classes together, this is critical for e2e tests)
109+
uv run pytest tests/ -n auto --dist loadscope
112110
113111
notification:
114112
name: Notification

0 commit comments

Comments
 (0)