aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/_test_multiprocessing.py
diff options
context:
space:
mode:
authorSam Gross <colesbury@gmail.com>2024-05-01 17:58:22 -0400
committerGitHub <noreply@github.com>2024-05-01 17:58:22 -0400
commitc408c36e9b346f9f15a34e98a5596f311df65efa (patch)
tree984278c60fbb1dcda8c14f4643bc53aec1cc06a3 /Lib/test/_test_multiprocessing.py
parenta7711a2a4e5cf16b34fc284085da724a8c2c06dd (diff)
downloadcpython-c408c36e9b346f9f15a34e98a5596f311df65efa.tar.gz
cpython-c408c36e9b346f9f15a34e98a5596f311df65efa.zip
gh-118413: Temporarily skip `test_release_task_refs` in free-threaded builds (#118491)
Diffstat (limited to 'Lib/test/_test_multiprocessing.py')
-rw-r--r--Lib/test/_test_multiprocessing.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py
index a74b61013c4..91f85990116 100644
--- a/Lib/test/_test_multiprocessing.py
+++ b/Lib/test/_test_multiprocessing.py
@@ -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.