Skip to content

Commit e18354b

Browse files
committed
fix test markers in test_exceptions.py
1 parent 360f8ca commit e18354b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Lib/test/test_exceptions.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1152,6 +1152,7 @@ class C(Exception):
11521152
self.assertIs(c.__context__, b)
11531153
self.assertIsNone(b.__context__)
11541154

1155+
@unittest.skip("TODO: RUSTPYTHON; Infinite loop")
11551156
def test_no_hang_on_context_chain_cycle1(self):
11561157
# See issue 25782. Cycle in context chain.
11571158

@@ -1207,6 +1208,7 @@ class C(Exception):
12071208
self.assertIs(b.__context__, a)
12081209
self.assertIs(a.__context__, c)
12091210

1211+
@unittest.skip("TODO: RUSTPYTHON; Infinite loop")
12101212
def test_no_hang_on_context_chain_cycle3(self):
12111213
# See issue 25782. Longer context chain with cycle.
12121214

0 commit comments

Comments
 (0)