Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 965361c

Browse files
committed
replace skip by skipif
1 parent e023dcb commit 965361c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

IPython/core/tests/test_debugger.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ def test_decorator_skip():
413413
child.close()
414414

415415

416-
@pytest.mark.skip(platform.python_implementation() == "PyPy", reason="issues on PyPy")
416+
@pytest.mark.skipif(platform.python_implementation() == "PyPy", reason="issues on PyPy")
417417
@skip_win32
418418
def test_decorator_skip_disabled():
419419
"""test that decorator frame skipping can be disabled"""
@@ -441,7 +441,7 @@ def test_decorator_skip_disabled():
441441
child.close()
442442

443443

444-
@pytest.mark.skip(platform.python_implementation() == "PyPy", reason="issues on PyPy")
444+
@pytest.mark.skipif(platform.python_implementation() == "PyPy", reason="issues on PyPy")
445445
@skip_win32
446446
def test_decorator_skip_with_breakpoint():
447447
"""test that decorator frame skipping can be disabled"""

0 commit comments

Comments
 (0)