Skip to content

Commit

Permalink
i guess we can't use continue-on-error that way then
Browse files Browse the repository at this point in the history
  • Loading branch information
wbarnha committed Jun 18, 2023
1 parent 046df90 commit 55e60cb
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
tests:
name: 'Python ${{ matrix.python-version }}/Cython: ${{ matrix.use-cython }}'
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
timeout-minutes: 10 # Maybe we should remove this someday but the PyPy tests are acting strange
strategy:
# Complete all jobs even if one fails, allows us to see
Expand All @@ -20,13 +19,12 @@ jobs:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
use-cython: ['true', 'false']
experimental: [false]
include:
- python-version: '~3.12.0-0'
experimental: 'true'
continue-on-error: true
use-cython: 'false'
- python-version: 'pypy3.9'
experimental: 'true'
continue-on-error: true
use-cython: 'false'
env:
USE_CYTHON: ${{ matrix.use-cython }}
Expand Down

0 comments on commit 55e60cb

Please sign in to comment.