]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-44895: skip test_no_hang_on_context_chain_cycle2 until the refleak is fixed ...
authorIrit Katriel <1055913+iritkatriel@users.noreply.github.com>
Mon, 16 Aug 2021 08:36:49 +0000 (09:36 +0100)
committerGitHub <noreply@github.com>
Mon, 16 Aug 2021 08:36:49 +0000 (10:36 +0200)
Lib/test/test_exceptions.py

index 947d7132cc7189296367d01273bb34f3f52b90fb..ce7b86880e69f70e65a2e8dbd930432331495cc5 100644 (file)
@@ -1012,11 +1012,9 @@ class ExceptionTests(unittest.TestCase):
         self.assertIsInstance(exc.__context__, ValueError)
         self.assertIs(exc.__context__.__context__, exc.__context__)
 
+    @unittest.skip("See issue 44895")
     def test_no_hang_on_context_chain_cycle2(self):
         # See issue 25782. Cycle at head of context chain.
-        while gc.collect():
-            # Remove this once issue 44895 is resolved
-            pass
 
         class A(Exception):
             pass