tests/run-tests.py: Make Windows test skipping more granular.
Signed-off-by: stijn <stijn@ignitron.net>
This commit is contained in:
parent
a0c7bf12d2
commit
1f907a2f5c
2
.github/workflows/ports_windows.yml
vendored
2
.github/workflows/ports_windows.yml
vendored
@ -42,6 +42,8 @@ jobs:
|
|||||||
configuration: Debug
|
configuration: Debug
|
||||||
- visualstudio: '2019'
|
- visualstudio: '2019'
|
||||||
configuration: Debug
|
configuration: Debug
|
||||||
|
env:
|
||||||
|
CI_BUILD_CONFIGURATION: ${{ matrix.configuration }}
|
||||||
runs-on: ${{ matrix.runner }}
|
runs-on: ${{ matrix.runner }}
|
||||||
steps:
|
steps:
|
||||||
- name: Install Visual Studio 2017
|
- name: Install Visual Studio 2017
|
||||||
|
|||||||
@ -580,7 +580,7 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1):
|
|||||||
if os.getenv("GITHUB_ACTIONS") == "true":
|
if os.getenv("GITHUB_ACTIONS") == "true":
|
||||||
skip_tests.add("thread/stress_schedule.py") # has reliability issues
|
skip_tests.add("thread/stress_schedule.py") # has reliability issues
|
||||||
|
|
||||||
if os.getenv("RUNNER_OS") == "Windows":
|
if os.getenv("RUNNER_OS") == "Windows" and os.getenv("CI_BUILD_CONFIGURATION") == "Debug":
|
||||||
# fails with stack overflow on Debug builds
|
# fails with stack overflow on Debug builds
|
||||||
skip_tests.add("misc/sys_settrace_features.py")
|
skip_tests.add("misc/sys_settrace_features.py")
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user