From 99e4bc42310710f4c126a9bf1047ebc70d0baa3a 2022-06-23 09:52:53 From: Matthias Bussonnier Date: 2022-06-23 09:52:53 Subject: [PATCH] try to fix tests --- diff --git a/IPython/core/tests/test_debugger.py b/IPython/core/tests/test_debugger.py index fc81b71..171f03d 100644 --- a/IPython/core/tests/test_debugger.py +++ b/IPython/core/tests/test_debugger.py @@ -452,11 +452,13 @@ def test_decorator_skip_with_breakpoint(): env = os.environ.copy() env["IPY_TEST_SIMPLE_PROMPT"] = "1" + env["PROMPT_TOOLKIT_NO_CPR"] = "1" child = pexpect.spawn( sys.executable, ["-m", "IPython", "--colors=nocolor"], env=env ) child.timeout = 15 * IPYTHON_TESTING_TIMEOUT_SCALE + child.str_last_chars = 500 child.expect("IPython") child.expect("\n")