File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -113,18 +113,21 @@ jobs:
113
113
114
114
test :
115
115
runs-on : ${{ matrix.os }}
116
- continue-on-error : ${{ matrix.experimental }}
116
+ continue-on-error : ${{ matrix.optional }}
117
117
strategy :
118
118
fail-fast : false
119
119
matrix :
120
120
python_version : ['3.8', '3.9','3.10']
121
121
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
123
127
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
128
131
env :
129
132
PYTHON_VERSION : ${{ matrix.python_version }}
130
133
steps :
You can’t perform that action at this time.
0 commit comments