Skip to content

Commit f2d570b

Browse files
committed
Fix continue-on-error in CI
1 parent 60bccf1 commit f2d570b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ jobs:
5959
# tests intermittently segfault with pypy and cpython 3.7 when using `coverage run ...`, hence separate job
6060
test-python:
6161
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 }}
6264
strategy:
6365
fail-fast: false
6466
matrix:
@@ -74,9 +76,6 @@ jobs:
7476

7577
runs-on: ubuntu-latest
7678

77-
# TODO: get test suite stable with free-threaded python
78-
continue-on-error: ${{ endsWith(matrix.python-version, 't') }}
79-
8079
steps:
8180
- uses: actions/checkout@v4
8281

0 commit comments

Comments
 (0)