From b792efc341be16da31e1b5d855e61307e1047310 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Sat, 15 Nov 2025 08:31:44 -0600 Subject: [PATCH] tests/run-tests.py: Re-add stress_schedule.py for GitHub Actions. This test was ignored since 2020, which hid a new bug in the test for the native emitter added in 2024. Hopefully other changes to the test will make it more reliable. Signed-off-by: Jeff Epler --- tests/run-tests.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/run-tests.py b/tests/run-tests.py index ecf9736fa3..abf5752fb8 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -985,8 +985,6 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1): # Some tests shouldn't be run on GitHub Actions if os.getenv("GITHUB_ACTIONS") == "true": - skip_tests.add("thread/stress_schedule.py") # has reliability issues - 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")