@@ -178,12 +178,12 @@ jobs:
178178 name : ${{ matrix.os }} ${{ matrix.floatx }}
179179 fail_ci_if_error : false
180180
181- windows :
181+ should_have_been_windows :
182182 needs : changes
183183 if : ${{ needs.changes.outputs.changes == 'true' }}
184184 strategy :
185185 matrix :
186- os : [windows -latest]
186+ os : [ubuntu -latest] # should revert back to windows-latest
187187 floatx : [float64]
188188 python-version : ["3.11"]
189189 test-subset :
@@ -206,7 +206,7 @@ jobs:
206206 persist-credentials : false
207207 - uses : mamba-org/setup-micromamba@v2
208208 with :
209- environment-file : conda-envs/windows- environment-test.yml
209+ environment-file : conda-envs/environment-test.yml
210210 create-args : >-
211211 python=${{matrix.python-version}}
212212 environment-name : pymc-test
@@ -343,7 +343,7 @@ jobs:
343343 if : ${{ needs.changes.outputs.changes == 'true' }}
344344 strategy :
345345 matrix :
346- os : [windows -latest]
346+ os : [ubuntu -latest] # should revert back ot windows-latest
347347 floatx : [float32]
348348 python-version : ["3.13"]
349349 test-subset :
@@ -362,7 +362,7 @@ jobs:
362362 persist-credentials : false
363363 - uses : mamba-org/setup-micromamba@v2
364364 with :
365- environment-file : conda-envs/windows- environment-test.yml
365+ environment-file : conda-envs/environment-test.yml
366366 create-args : >-
367367 python=${{matrix.python-version}}
368368 environment-name : pymc-test
@@ -389,12 +389,12 @@ jobs:
389389 all_tests :
390390 if : ${{ always() }}
391391 runs-on : ubuntu-latest
392- needs : [ changes, ubuntu, windows, macos, alternative_backends, float32 ]
392+ needs : [ changes, ubuntu, macos, alternative_backends, float32 ]
393393 steps :
394394 - name : Check build matrix status
395395 if : ${{ needs.changes.outputs.changes == 'true' &&
396396 ( needs.ubuntu.result != 'success' ||
397- needs.windows .result != 'success' ||
397+ needs.should_have_been_windows .result != 'success' ||
398398 needs.macos.result != 'success' ||
399399 needs.alternative_backends.result != 'success' ||
400400 needs.float32.result != 'success' ) }}
0 commit comments