8000 Try to fix shell quoting · matplotlib/matplotlib@e7079e8 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit e7079e8

Browse files
committed
Try to fix shell quoting
1 parent ebdba26 commit e7079e8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -353,12 +353,12 @@ jobs:
353353
if [[ "${{ matrix.python-version }}" == '3.13t' ]]; then
354354
export PYTHON_GIL=0
355355
fi
356-
if ${{ contains(matrix.name-suffix, 'pre-release') }}; then
357-
FLAGS="-k 'not test_backends_interactive'"
356+
if ${{ contains(matrix.name-suffix, 'pre-release') || matrix.skip-interactive-tests }}; then
357+
FLAGS=(-k 'not test_backends_interactive')
358358
else
359-
FLAGS="-n auto"
359+
FLAGS=(-n auto)
360360
fi
361-
pytest -rfEsXR $FLAGS \
361+
pytest -rfEsXR "${FLAGS[@]}" \
362362
--maxfail=50 --timeout=300 --durations=25 \
363363
--cov-report=xml --cov=lib --log-level=DEBUG --color=yes
364364

0 commit comments

Comments
 (0)
0