Skip to content

Commit

Permalink
bpo-44895: skip test_no_hang_on_context_chain_cycle2 until the reflea…
Browse files Browse the repository at this point in the history
…k is fixed (pythonGH-27761)
  • Loading branch information
iritkatriel authored Aug 16, 2021
1 parent 2cb1a68 commit 62bc716
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Lib/test/test_exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1012,11 +1012,9 @@ def cycle():
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
Expand Down

0 comments on commit 62bc716

Please sign in to comment.