Skip to content

Commit b434b3b

Browse files
committed
skip test_recursive_call on pypy and emscripten
1 parent ca83f0a commit b434b3b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/serializers/test_functions.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import json
2+
import platform
23
import sys
34
from collections import deque
45
from pathlib import Path
@@ -632,6 +633,9 @@ def f(value, handler, _info):
632633
assert s.to_python('abc') == 'abc'
633634

634635

636+
@pytest.mark.skipif(
637+
platform.python_implementation() == 'PyPy' or sys.platform == 'emscripten', reason='fails on pypy and emscripten'
638+
)
635639
def test_recursive_call():
636640
def bad_recursive(value):
637641
return s.to_python(value)

0 commit comments

Comments
 (0)