Skip to content

Commit c5b1751

Browse files
authored
Merge pull request #837 from Carreau/skip-pypy
Skip on PyPy, seem to fail.
2 parents 82b689c + be6c693 commit c5b1751

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
def test_interrupt_during_pdb_set_trace():
429433
"""
430434
The kernel exits after being interrupted while waiting in pdb.set_trace().

0 commit comments

Comments
 (0)