We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 312cf3a commit 727c11dCopy full SHA for 727c11d
1 file changed
.github/workflows/pr.yaml
@@ -67,7 +67,7 @@ jobs:
67
name: Regression (fast) • ${{ matrix.system }}
68
needs: [unit, discover-systems]
69
runs-on: ubuntu-24.04
70
- timeout-minutes: 35
+ timeout-minutes: 45
71
72
strategy:
73
fail-fast: false
@@ -95,6 +95,15 @@ jobs:
95
python -m pip install --upgrade pip
96
python -m pip install -e .[testing]
97
98
+ - name: Warm up regression system
99
+ run: |
100
+ python -m pytest tests/regression \
101
+ -m "not slow" \
102
+ -n auto \
103
+ --dist=loadscope \
104
+ -k "${{ matrix.system }}" \
105
+ -q || true
106
+
107
- name: Run fast regression tests (per system)
108
run: |
109
python -m pytest tests/regression \
0 commit comments