##// END OF EJS Templates
MAINT: mark 3.13.dev failing test as xfail
M Bussonnier -
Show More
@@ -54,6 +54,10 b' class PdbTestInput(object):'
54 54 # Tests
55 55 #-----------------------------------------------------------------------------
56 56
57 @pytest.mark.xfail(
58 sys.version_info.releaselevel not in ("final", "candidate"),
59 reason="fails on 3.13.dev",
60 )
57 61 def test_ipdb_magics():
58 62 '''Test calling some IPython magics from ipdb.
59 63
@@ -447,6 +451,10 b' def test_decorator_skip_disabled():'
447 451 child.close()
448 452
449 453
454 @pytest.mark.xfail(
455 sys.version_info.releaselevel not in ("final", "candidate"),
456 reason="fails on 3.13.dev",
457 )
450 458 @pytest.mark.skipif(platform.python_implementation() == "PyPy", reason="issues on PyPy")
451 459 @skip_win32
452 460 def test_decorator_skip_with_breakpoint():
@@ -488,6 +488,10 b' def test_pinfo_docstring_if_detail_and_no_source():'
488 488 ip._inspect('pinfo', 'foo.bar', detail_level=1)
489 489
490 490
491 @pytest.mark.xfail(
492 sys.version_info.releaselevel not in ("final", "candidate"),
493 reason="fails on 3.13.dev",
494 )
491 495 def test_pinfo_docstring_dynamic():
492 496 obj_def = """class Bar:
493 497 __custom_documentations__ = {
General Comments 0
You need to be logged in to leave comments. Login now