Skip to content

Commit 3080c7e

Browse files
committed
skip recursion test on emscripten
1 parent eb50427 commit 3080c7e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

hypothesis-python/tests/cover/test_searchstrategy.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from hypothesis.vendor import pretty
2727

2828
from tests.common.debug import assert_simple_property, check_can_generate_examples
29-
from tests.common.utils import checks_deprecated_behaviour
29+
from tests.common.utils import checks_deprecated_behaviour, skipif_emscripten
3030

3131

3232
def test_or_errors_when_given_non_strategy():
@@ -172,6 +172,8 @@ def test_jsonable_very_large_ints():
172172
assert to_jsonable(n, avoid_realization=True) == "<symbolic>"
173173

174174

175+
# https://github.com/pyodide/pyodide/issues/5959
176+
@skipif_emscripten
175177
def test_jsonable_recursive_reference():
176178
# test that to_jsonable handles RecursionError gracefully, by falling back to
177179
# pretty.pretty.

0 commit comments

Comments
 (0)