##// 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 # Tests
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 def test_ipdb_magics():
61 def test_ipdb_magics():
58 '''Test calling some IPython magics from ipdb.
62 '''Test calling some IPython magics from ipdb.
59
63
@@ -447,6 +451,10 b' def test_decorator_skip_disabled():'
447 child.close()
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 @pytest.mark.skipif(platform.python_implementation() == "PyPy", reason="issues on PyPy")
458 @pytest.mark.skipif(platform.python_implementation() == "PyPy", reason="issues on PyPy")
451 @skip_win32
459 @skip_win32
452 def test_decorator_skip_with_breakpoint():
460 def test_decorator_skip_with_breakpoint():
@@ -488,6 +488,10 b' def test_pinfo_docstring_if_detail_and_no_source():'
488 ip._inspect('pinfo', 'foo.bar', detail_level=1)
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 def test_pinfo_docstring_dynamic():
495 def test_pinfo_docstring_dynamic():
492 obj_def = """class Bar:
496 obj_def = """class Bar:
493 __custom_documentations__ = {
497 __custom_documentations__ = {
General Comments 0
You need to be logged in to leave comments. Login now