Skip to content
16 changes: 15 additions & 1 deletion .github/workflows/ci-meson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,21 @@ jobs:
name: Conda (${{ matrix.os }}, Python ${{ matrix.python }}, ${{ matrix.tests }}${{ matrix.editable && ', editable' || '' }})
runs-on: ${{ matrix.os }}-latest
env:
SEPARATELY_TESTED_FLAKY_FILES: "src/sage/libs/singular/function.pyx src/sage/rings/polynomial/plural.pyx"
# Some tests are flaky, so we run them separately with retries
# Tracked in: https://github.com/orgs/sagemath/projects/1
# https://github.com/sagemath/sage/issues/41117 -> src/sage/rings/polynomial/polynomial_zmod_flint.pyx
# https://github.com/sagemath/sage/issues/41091 -> src/sage/modules/filtered_vector_space.py
# https://github.com/sagemath/sage/issues/41049 -> src/sage/matrix/matrix_integer_dense.pyx
# https://github.com/sagemath/sage/issues/41008 -> src/sage/graphs/generic_graph.py
# https://github.com/sagemath/sage/issues/40988 -> src/sage/rings/polynomial/multi_polynomial_libsingular.pyx
# https://github.com/sagemath/sage/issues/37298 -> src/sage/interfaces/gap.py
SEPARATELY_TESTED_FLAKY_FILES: >
src/sage/rings/polynomial/polynomial_zmod_flint.pyx
src/sage/modules/filtered_vector_space.py
src/sage/matrix/matrix_integer_dense.pyx
src/sage/graphs/generic_graph.py
src/sage/rings/polynomial/multi_polynomial_libsingular.pyx
src/sage/interfaces/gap.py

strategy:
fail-fast: false
Expand Down
Loading