summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2024-06-14 22:12:35 (GMT)
committerGitHub <noreply@github.com>2024-06-14 22:12:35 (GMT)
commite3b6cff33122554de0ef598664f5cd98de4fed6b (patch)
tree1c0ca8bdb14e2ff977c04bc50147c193bcf9291d
parentb2e71ff4f8fa5b7d8117dd8125137aee3d01f015 (diff)
downloadcpython-e3b6cff33122554de0ef598664f5cd98de4fed6b.zip
cpython-e3b6cff33122554de0ef598664f5cd98de4fed6b.tar.gz
cpython-e3b6cff33122554de0ef598664f5cd98de4fed6b.tar.bz2
gh-120524: Temporarily Skip test_create_many_threaded In test_interpreters.test_stress (gh-120525)
-rw-r--r--Lib/test/test_interpreters/test_stress.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_interpreters/test_stress.py b/Lib/test/test_interpreters/test_stress.py
index e400535..40d2d77 100644
--- a/Lib/test/test_interpreters/test_stress.py
+++ b/Lib/test/test_interpreters/test_stress.py
@@ -22,6 +22,7 @@ class StressTests(TestBase):
interp = interpreters.create()
alive.append(interp)
+ @unittest.skip('(temporary) gh-120524: there is a race that needs fixing')
@support.requires_resource('cpu')
def test_create_many_threaded(self):
alive = []