X Tutup
Skip to content

Commit f140f63

Browse files
committed
re-add env poluting common
1 parent f1b0c2c commit f140f63

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@ env:
9797
test_unpack_ex
9898
test_weakref
9999
test_yield_from
100+
101+
ENV_POLLUTING_TESTS_COMMON: >-
102+
100103
# Python version targeted by the CI.
101104
PYTHON_VERSION: "3.14.3"
102105
X86_64_PC_WINDOWS_MSVC_OPENSSL_LIB_DIR: C:\Program Files\OpenSSL\lib\VC\x64\MD
@@ -282,19 +285,19 @@ jobs:
282285
job:
283286
- os: macos-latest
284287
env_polluting_tests: ""
285-
skips: ""
288+
skip: ""
286289
- os: ubuntu-latest
287290
cargo_args: "--features=jit"
288291
env_polluting_tests: ""
289-
skips: ""
292+
skip: ""
290293
- os: windows-2025
291294
cargo_args: "--features=jit"
292295
env_polluting_tests: ""
293296
# Skip additional tests on Windows. They are checked on Linux and MacOS.
294297
# test_pathlib: panic by surrogate chars
295298
# test_posixpath: OSError: (22, 'The filename, directory name, or volume label syntax is incorrect. (os error 123)')
296299
# test_venv: couple of failing tests
297-
skips: >-
300+
skip: >-
298301
test_rlcompleter
299302
test_pathlib
300303
test_posixpath
@@ -335,7 +338,7 @@ jobs:
335338

336339
- name: Run CPython platform-dependent tests
337340
run: |
338-
target/release/rustpython -m test -j 1 -u all --slowest --fail-env-changed --timeout 600 -v -x ${{ env.PLATFORM_INDEPENDENT_TESTS }} ${{ matrix.job.skips }}
341+
target/release/rustpython -m test -j 1 -u all --slowest --fail-env-changed --timeout 600 -v -x ${{ env.PLATFORM_INDEPENDENT_TESTS }} ${{ matrix.job.skip }}
339342
env:
340343
RUSTPYTHON_SKIP_ENV_POLLUTERS: true
341344
timeout-minutes: 60

0 commit comments

Comments
 (0)
X Tutup