]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-121065: Temporarily skip flaky test on free-threaded build (#121100)
authorSam Gross <colesbury@gmail.com>
Thu, 27 Jun 2024 18:03:09 +0000 (14:03 -0400)
committerGitHub <noreply@github.com>
Thu, 27 Jun 2024 18:03:09 +0000 (14:03 -0400)
Lib/test/test_signal.py

index 591cd4177d9f41bb84fc992fd3777b137201ef69..7f8fe34bb315b26853e4808ee6c6d648d54b636b 100644 (file)
@@ -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")