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:
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 :
You can’t perform that action at this time.
0 commit comments