Skip to content

Commit 425647b

Browse files
committed
skip test_recursive_call on pypy, emscripten and windows
1 parent b434b3b commit 425647b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/serializers/test_functions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,8 @@ def f(value, handler, _info):
634634

635635

636636
@pytest.mark.skipif(
637-
platform.python_implementation() == 'PyPy' or sys.platform == 'emscripten', reason='fails on pypy and emscripten'
637+
platform.python_implementation() == 'PyPy' or sys.platform in {'emscripten', 'win32'},
638+
reason='fails on pypy, emscripten and windows',
638639
)
639640
def test_recursive_call():
640641
def bad_recursive(value):

0 commit comments

Comments
 (0)