From: Sam Gross Date: Thu, 27 Jun 2024 18:03:09 +0000 (-0400) Subject: gh-121065: Temporarily skip flaky test on free-threaded build (#121100) X-Git-Tag: v3.14.0a1~1302 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4a62a331de1eeda7878960b0bd184a348908245e;p=thirdparty%2FPython%2Fcpython.git gh-121065: Temporarily skip flaky test on free-threaded build (#121100) --- diff --git a/Lib/test/test_signal.py b/Lib/test/test_signal.py index 591cd4177d9f..7f8fe34bb315 100644 --- a/Lib/test/test_signal.py +++ b/Lib/test/test_signal.py @@ -1345,6 +1345,7 @@ class StressTest(unittest.TestCase): # 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")