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.
continue-on-error
1 parent 60bccf1 commit f2d570bCopy full SHA for f2d570b
.github/workflows/ci.yml
@@ -59,6 +59,8 @@ jobs:
59
# tests intermittently segfault with pypy and cpython 3.7 when using `coverage run ...`, hence separate job
60
test-python:
61
name: test ${{ matrix.python-version }}
62
+ # TODO: get test suite stable with free-threaded python
63
+ continue-on-error: ${{ endsWith(matrix.python-version, 't') && true || false }}
64
strategy:
65
fail-fast: false
66
matrix:
@@ -74,9 +76,6 @@ jobs:
74
76
75
77
runs-on: ubuntu-latest
78
- # TODO: get test suite stable with free-threaded python
- continue-on-error: ${{ endsWith(matrix.python-version, 't') }}
79
-
80
steps:
81
- uses: actions/checkout@v4
82
0 commit comments