##// END OF EJS Templates
Skip problemtic test on PyPy
Matthias Bussonnier -
Show More
@@ -8,6 +8,7 b' import bdb'
8 8 import builtins
9 9 import os
10 10 import sys
11 import platform
11 12
12 13 from tempfile import NamedTemporaryFile
13 14 from textwrap import dedent
@@ -16,6 +17,7 b' from unittest.mock import patch'
16 17 from IPython.core import debugger
17 18 from IPython.testing import IPYTHON_TESTING_TIMEOUT_SCALE
18 19 from IPython.testing.decorators import skip_win32
20 import pytest
19 21
20 22 #-----------------------------------------------------------------------------
21 23 # Helper classes, from CPython's Pdb test suite
@@ -411,6 +413,7 b' def test_decorator_skip():'
411 413 child.close()
412 414
413 415
416 @pytest.mark.skip(platform.python_implementation() == "PyPy", reason="issues on PyPy")
414 417 @skip_win32
415 418 def test_decorator_skip_disabled():
416 419 """test that decorator frame skipping can be disabled"""
@@ -438,6 +441,7 b' def test_decorator_skip_disabled():'
438 441 child.close()
439 442
440 443
444 @pytest.mark.skip(platform.python_implementation() == "PyPy", reason="issues on PyPy")
441 445 @skip_win32
442 446 def test_decorator_skip_with_breakpoint():
443 447 """test that decorator frame skipping can be disabled"""
General Comments 0
You need to be logged in to leave comments. Login now