From 647d44f50847b6b0ebb7bd84a4034d69ff0e4e2a Mon Sep 17 00:00:00 2001 From: ShaharNaveh <50263213+ShaharNaveh@users.noreply.github.com> Date: Wed, 17 Jun 2026 10:18:31 +0300 Subject: [PATCH] Skip flaky test at `test_thread.py` --- Lib/test/test_thread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_thread.py b/Lib/test/test_thread.py index dc55174421a..22b19ee3d30 100644 --- a/Lib/test/test_thread.py +++ b/Lib/test/test_thread.py @@ -115,7 +115,7 @@ def test_nt_and_posix_stack_size(self): thread.stack_size(0) - @unittest.skipIf(__import__("sys").platform in ("linux", "win32"), "TODO: RUSTPYTHON; Flakey on CI") + @unittest.skip("TODO: RUSTPYTHON; Flakey on CI") def test__count(self): # Test the _count() function. orig = thread._count()