8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebdba26 commit e7079e8Copy full SHA for e7079e8
.github/workflows/tests.yml
@@ -353,12 +353,12 @@ jobs:
353
if [[ "${{ matrix.python-version }}" == '3.13t' ]]; then
354
export PYTHON_GIL=0
355
fi
356
- if ${{ contains(matrix.name-suffix, 'pre-release') }}; then
357
- FLAGS="-k 'not test_backends_interactive'"
+ if ${{ contains(matrix.name-suffix, 'pre-release') || matrix.skip-interactive-tests }}; then
+ FLAGS=(-k 'not test_backends_interactive')
358
else
359
- FLAGS="-n auto"
+ FLAGS=(-n auto)
360
361
- pytest -rfEsXR $FLAGS \
+ pytest -rfEsXR "${FLAGS[@]}" \
362
--maxfail=50 --timeout=300 --durations=25 \
363
--cov-report=xml --cov=lib --log-level=DEBUG --color=yes
364
0 commit comments