8000 Try disabling xdist on 3.14 · matplotlib/matplotlib@ebdba26 · GitHub
[go: up one dir, main page]

Skip to content

Commit ebdba26

Browse files
committed
Try disabling xdist on 3.14
1 parent 32c32e0 commit ebdba26

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -353,17 +353,14 @@ jobs:
353353
if [[ "${{ matrix.python-version }}" == '3.13t' ]]; then
354354
export PYTHON_GIL=0
355355
fi
356-
if [[ "${{ matrix.skip-interactive-tests }}" == "true" ]]; then
356+
if ${{ contains(matrix.name-suffix, 'pre-release') }}; then
357357
FLAGS="-k 'not test_backends_interactive'"
358+
else
359+
FLAGS="-n auto"
358360
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 \
364362
--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
367364
368365
- name: Cleanup non-failed image files
369366
if: failure()

0 commit comments

Comments
 (0)
0