Skip to content

Commit

Permalink
debug: make macos 3.10 optional for real this time
Browse files Browse the repository at this point in the history
  • Loading branch information
onerandomusername committed Nov 19, 2021
1 parent f047211 commit a023c07
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/lint_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,18 +113,21 @@ jobs:

test:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
continue-on-error: ${{ matrix.optional }}
strategy:
fail-fast: false
matrix:
python_version: ['3.8', '3.9','3.10']
os: [ubuntu-latest, windows-latest, macos-latest]
experimental: [false]
optional: [false]
exclude:
# currently has a segfault issue, so we exclude and reinclude as optional
- python_version: '3.10'
os: macos-latest
include:
# currently has a segfault issue,
- os: macos-latest
python_version: '3.10'
experimental: true
- python_version: '3.10'
os: macos-latest
optional: true
env:
PYTHON_VERSION: ${{ matrix.python_version }}
steps:
Expand Down

0 comments on commit a023c07

Please sign in to comment.