windows: Make test skipping more granular.

Signed-off-by: stijn <stijn@ignitron.net>
pull/14188/head
stijn 2024-03-26 16:11:11 +01:00
rodzic 1513f4753c
commit ea145374e3
2 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -42,6 +42,8 @@ jobs:
configuration: Debug
- visualstudio: '2019'
configuration: Debug
env:
CI_BUILD_CONFIGURATION: ${{ matrix.configuration }}
runs-on: ${{ matrix.runner }}
steps:
- name: Install Visual Studio 2017

Wyświetl plik

@ -580,7 +580,7 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1):
if os.getenv("GITHUB_ACTIONS") == "true":
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
skip_tests.add("misc/sys_settrace_features.py")