]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-118413: Temporarily skip `test_release_task_refs` in free-threaded builds (#118491)
authorSam Gross <colesbury@gmail.com>
Wed, 1 May 2024 21:58:22 +0000 (17:58 -0400)
committerGitHub <noreply@github.com>
Wed, 1 May 2024 21:58:22 +0000 (17:58 -0400)
Lib/test/_test_multiprocessing.py

index a74b61013c484880621a81136f3f3011234679f2..91f85990116ee7c4c69f7836b986f1047c1382b9 100644 (file)
@@ -2804,6 +2804,7 @@ class _TestPool(BaseTestCase):
         # check that we indeed waited for all jobs
         self.assertGreater(time.monotonic() - t_start, 0.9)
 
+    @support.requires_gil_enabled("gh-118413: test is flaky with GIL disabled")
     def test_release_task_refs(self):
         # Issue #29861: task arguments and results should not be kept
         # alive after we are done with them.