File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -253,14 +253,19 @@ jobs:
253253 matrix :
254254 include :
255255 - os : macos-latest
256+ extra_test_args :
257+ - ' -u all'
256258 env_polluting_tests : []
257259 skips : []
258260 timeout : 50
259261 - os : ubuntu-latest
262+ extra_test_args :
263+ - ' -u all'
260264 env_polluting_tests : []
261265 skips : []
262266 timeout : 60
263267 - os : windows-2025
268+ extra_test_args : [] # TODO: Enable '-u all'
264269 env_polluting_tests : []
265270 skips :
266271 - test_rlcompleter
@@ -302,7 +307,7 @@ jobs:
302307
303308 - name : run cpython platform-dependent tests
304309 run : |
305- target/release/rustpython -m test -j 1 -u all --slowest --fail-env-changed --timeout 600 -v -x ${{ env.PLATFORM_INDEPENDENT_TESTS }} ${{ join(matrix.skips, ' ') }}
310+ target/release/rustpython -m test -j 1 ${{ join(matrix.extra_test_args, ' ') }} --slowest --fail-env-changed --timeout 600 -v -x ${{ env.PLATFORM_INDEPENDENT_TESTS }} ${{ join(matrix.skips, ' ') }}
306311 timeout-minutes : ${{ matrix.timeout }}
307312 env :
308313 RUSTPYTHON_SKIP_ENV_POLLUTERS : true
You can’t perform that action at this time.
0 commit comments