mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
fix test markers in test_exceptions.py
This commit is contained in:
2
Lib/test/test_exceptions.py
vendored
2
Lib/test/test_exceptions.py
vendored
@@ -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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user