File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
418418def 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
446446def test_decorator_skip_with_breakpoint ():
447447 """test that decorator frame skipping can be disabled"""
You can’t perform that action at this time.
0 commit comments