Skip to content

Commit b667837

Browse files
committed
Don't enable all resources on windows
1 parent f1c4d3d commit b667837

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)