diff --git a/IPython/core/tests/test_debugger.py b/IPython/core/tests/test_debugger.py index 82c57b2..6983396 100644 --- a/IPython/core/tests/test_debugger.py +++ b/IPython/core/tests/test_debugger.py @@ -54,6 +54,10 @@ class PdbTestInput(object): # Tests #----------------------------------------------------------------------------- +@pytest.mark.xfail( + sys.version_info.releaselevel not in ("final", "candidate"), + reason="fails on 3.13.dev", +) def test_ipdb_magics(): '''Test calling some IPython magics from ipdb. @@ -447,6 +451,10 @@ def test_decorator_skip_disabled(): child.close() +@pytest.mark.xfail( + sys.version_info.releaselevel not in ("final", "candidate"), + reason="fails on 3.13.dev", +) @pytest.mark.skipif(platform.python_implementation() == "PyPy", reason="issues on PyPy") @skip_win32 def test_decorator_skip_with_breakpoint(): diff --git a/IPython/core/tests/test_oinspect.py b/IPython/core/tests/test_oinspect.py index 8d65941..2fe28f5 100644 --- a/IPython/core/tests/test_oinspect.py +++ b/IPython/core/tests/test_oinspect.py @@ -488,6 +488,10 @@ def test_pinfo_docstring_if_detail_and_no_source(): ip._inspect('pinfo', 'foo.bar', detail_level=1) +@pytest.mark.xfail( + sys.version_info.releaselevel not in ("final", "candidate"), + reason="fails on 3.13.dev", +) def test_pinfo_docstring_dynamic(): obj_def = """class Bar: __custom_documentations__ = {