fix test markers in test_exceptions.py

This commit is contained in:
ShaharNaveh
2025-10-11 11:23:24 +03:00
parent 360f8caead
commit e18354b990

View File

@@ -1152,6 +1152,7 @@ class ExceptionTests(unittest.TestCase):
self.assertIs(c.__context__, b)
self.assertIsNone(b.__context__)
@unittest.skip("TODO: RUSTPYTHON; Infinite loop")
def test_no_hang_on_context_chain_cycle1(self):
# See issue 25782. Cycle in context chain.
@@ -1207,6 +1208,7 @@ class ExceptionTests(unittest.TestCase):
self.assertIs(b.__context__, a)
self.assertIs(a.__context__, c)
@unittest.skip("TODO: RUSTPYTHON; Infinite loop")
def test_no_hang_on_context_chain_cycle3(self):
# See issue 25782. Longer context chain with cycle.