bpo-44895: skip test_no_hang_on_context_chain_cycle2 until the refleak is fixed (GH-27761)

This commit is contained in:
Irit Katriel 2021-08-16 09:36:49 +01:00 committed by GitHub
parent 2cb1a6806c
commit 62bc716fde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

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