From 70bbf6416ff6843f63c1f33c7e204a830aa3eaee Mon Sep 17 00:00:00 2001 From: Sam Gross Date: Thu, 27 Jun 2024 17:23:42 +0000 Subject: [PATCH] gh-121065: Temporarily skip flaky test on free-threaded build --- Lib/test/test_signal.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_signal.py b/Lib/test/test_signal.py index 591cd4177d9f41..7f8fe34bb315b2 100644 --- a/Lib/test/test_signal.py +++ b/Lib/test/test_signal.py @@ -1345,6 +1345,7 @@ def handler(signum, frame): # Python handler self.assertEqual(len(sigs), N, "Some signals were lost") + @support.requires_gil_enabled("gh-121065: test is flaky on free-threaded build") @unittest.skipIf(is_apple, "crashes due to system bug (FB13453490)") @unittest.skipUnless(hasattr(signal, "SIGUSR1"), "test needs SIGUSR1")