Skip to content

Commit 2228448

Browse files
committed
Skip on PyPy, seem to fail.
1 parent c9e2917 commit 2228448

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ipykernel/tests/test_kernel.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,10 @@ def test_interrupt_with_message():
425425
validate_message(reply, 'execute_reply', msg_id)
426426

427427

428+
@pytest.mark.skipif(
429+
"__pypy__" in sys.builtin_module_names,
430+
reason="fails on pypy",
431+
)
428432
@pytest.mark.skipif(
429433
version.parse(IPython.__version__) < version.parse("7.14.0"),
430434
reason="Need new IPython"

0 commit comments

Comments
 (0)