Skip to content

Commit 774fa93

Browse files
committed
Temporary skip recursion limit tests
1 parent 1960cdc commit 774fa93

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

tests/test_copium.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,12 +151,14 @@ def test_recursion_limit_increase():
151151
copium.deepcopy(at_interpreter_limit)
152152

153153

154+
@pytest.mark.skip(reason="WIP")
154155
def test_graceful_recursion_error():
155156
value = make_nested(999999)
156157
with pytest.raises(RecursionError):
157158
copium.deepcopy(value) # without safeguards this can SIGSEGV
158159

159160

161+
@pytest.mark.skip(reason="WIP")
160162
def test_graceful_recursion_error_with_increased_limit():
161163
"""
162164
We won't guarantee to match interpreter recursion limit, but will handle it gracefully.

0 commit comments

Comments
 (0)