##// END OF EJS Templates
try to fix tests
Matthias Bussonnier -
Show More
@@ -452,11 +452,13 b' def test_decorator_skip_with_breakpoint():'
452
452
453 env = os.environ.copy()
453 env = os.environ.copy()
454 env["IPY_TEST_SIMPLE_PROMPT"] = "1"
454 env["IPY_TEST_SIMPLE_PROMPT"] = "1"
455 env["PROMPT_TOOLKIT_NO_CPR"] = "1"
455
456
456 child = pexpect.spawn(
457 child = pexpect.spawn(
457 sys.executable, ["-m", "IPython", "--colors=nocolor"], env=env
458 sys.executable, ["-m", "IPython", "--colors=nocolor"], env=env
458 )
459 )
459 child.timeout = 15 * IPYTHON_TESTING_TIMEOUT_SCALE
460 child.timeout = 15 * IPYTHON_TESTING_TIMEOUT_SCALE
461 child.str_last_chars = 500
460
462
461 child.expect("IPython")
463 child.expect("IPython")
462 child.expect("\n")
464 child.expect("\n")
General Comments 0
You need to be logged in to leave comments. Login now