File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -353,17 +353,14 @@ jobs:
353
353
if [[ "${{ matrix.python-version }}" == '3.13t' ]]; then
354
354
export PYTHON_GIL=0
355
355
fi
356
- if [[ " ${{ matrix.skip-interactive-tests }}" == "true" ]] ; then
356
+ if ${{ contains( matrix.name-suffix, 'pre-release') }}; then
357
357
FLAGS="-k 'not test_backends_interactive'"
358
+ else
359
+ FLAGS="-n auto"
358
360
fi
359
- echo pytest -rfEsXR -n auto \
360
- --maxfail=50 --timeout=300 --durations=25 \
361
- --cov-report=xml --cov=lib --log-level=DEBUG --color=yes \
362
- $FLAGS
363
- pytest -rfEsXR -n auto \
361
+ pytest -rfEsXR $FLAGS \
364
362
--maxfail=50 --timeout=300 --durations=25 \
365
- --cov-report=xml --cov=lib --log-level=DEBUG --color=yes \
366
- $FLAGS
363
+ --cov-report=xml --cov=lib --log-level=DEBUG --color=yes
367
364
368
365
- name : Cleanup non-failed image files
369
366
if : failure()
You can’t perform that action at this time.
0 commit comments