Skip to content

Commit

Permalink
Merge pull request #837 from Carreau/skip-pypy
Browse files Browse the repository at this point in the history
Skip on PyPy, seem to fail.
  • Loading branch information
Carreau committed Jan 7, 2022
2 parents 82b689c + be6c693 commit c5b1751
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ipykernel/tests/test_kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,10 @@ def test_interrupt_with_message():
validate_message(reply, 'execute_reply', msg_id)


@pytest.mark.skipif(
"__pypy__" in sys.builtin_module_names,
reason="fails on pypy",
)
def test_interrupt_during_pdb_set_trace():
"""
The kernel exits after being interrupted while waiting in pdb.set_trace().
Expand Down

0 comments on commit c5b1751

Please sign in to comment.