Skip to content

Commit a023c07

Browse files
debug: make macos 3.10 optional for real this time
1 parent f047211 commit a023c07

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/lint_test.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,18 +113,21 @@ jobs:
113113

114114
test:
115115
runs-on: ${{ matrix.os }}
116-
continue-on-error: ${{ matrix.experimental }}
116+
continue-on-error: ${{ matrix.optional }}
117117
strategy:
118118
fail-fast: false
119119
matrix:
120120
python_version: ['3.8', '3.9','3.10']
121121
os: [ubuntu-latest, windows-latest, macos-latest]
122-
experimental: [false]
122+
optional: [false]
123+
exclude:
124+
# currently has a segfault issue, so we exclude and reinclude as optional
125+
- python_version: '3.10'
126+
os: macos-latest
123127
include:
124-
# currently has a segfault issue,
125-
- os: macos-latest
126-
python_version: '3.10'
127-
experimental: true
128+
- python_version: '3.10'
129+
os: macos-latest
130+
optional: true
128131
env:
129132
PYTHON_VERSION: ${{ matrix.python_version }}
130133
steps:

0 commit comments

Comments
 (0)