Skip to content

Commit 954cd3b

Browse files
committed
tests(regression): speed up PR regression tests with fast-only selection and parallel execution
1 parent 537fefb commit 954cd3b

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/pr.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,12 @@ jobs:
6262
python -m pip install -e .[testing]
6363
6464
- name: Pytest (regression quick)
65-
run: python -m pytest tests/regression
65+
run: |
66+
python -m pytest tests/regression \
67+
-m "not slow" \
68+
-n auto \
69+
-vv \
70+
--durations=0
6671
6772
- name: Upload artifacts (failure)
6873
if: failure()

0 commit comments

Comments
 (0)