File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88import builtins
99import os
1010import sys
11+ import platform
1112
1213from tempfile import NamedTemporaryFile
1314from textwrap import dedent
1617from IPython .core import debugger
1718from IPython .testing import IPYTHON_TESTING_TIMEOUT_SCALE
1819from IPython .testing .decorators import skip_win32
20+ import pytest
1921
2022#-----------------------------------------------------------------------------
2123# Helper classes, from CPython's Pdb test suite
@@ -411,6 +413,7 @@ def test_decorator_skip():
411413 child .close ()
412414
413415
416+ @pytest .mark .skip (platform .python_implementation () == "PyPy" , reason = "issues on PyPy" )
414417@skip_win32
415418def test_decorator_skip_disabled ():
416419 """test that decorator frame skipping can be disabled"""
@@ -438,6 +441,7 @@ def test_decorator_skip_disabled():
438441 child .close ()
439442
440443
444+ @pytest .mark .skip (platform .python_implementation () == "PyPy" , reason = "issues on PyPy" )
441445@skip_win32
442446def test_decorator_skip_with_breakpoint ():
443447 """test that decorator frame skipping can be disabled"""
You can’t perform that action at this time.
0 commit comments