diff options
author | Sam Gross <colesbury@gmail.com> | 2024-06-27 18:03:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-27 18:03:09 (GMT) |
commit | 4a62a331de1eeda7878960b0bd184a348908245e (patch) | |
tree | 3043285097007622633d39f442b1edab89230bf1 | |
parent | e9b4ec614b66d11623b80471409c16a109f888d5 (diff) | |
download | cpython-4a62a331de1eeda7878960b0bd184a348908245e.zip cpython-4a62a331de1eeda7878960b0bd184a348908245e.tar.gz cpython-4a62a331de1eeda7878960b0bd184a348908245e.tar.bz2 |
gh-121065: Temporarily skip flaky test on free-threaded build (#121100)
-rw-r--r-- | Lib/test/test_signal.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_signal.py b/Lib/test/test_signal.py index 591cd41..7f8fe34 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") |