You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading the readline library to version 8.1 the following test failure started to appear:
=================================== FAILURES ===================================
_________________________ REPLWrapTestCase.test_python _________________________
self = <metakernel.tests.test_replwrap.REPLWrapTestCase testMethod=test_python>
def test_python(self):
if platform.python_implementation() == 'PyPy':
raise unittest.SkipTest("This test fails on PyPy because of REPL differences")
p = replwrap.python(sys.executable)
res = p.run_command('4+7')
> assert res.strip() == '11'
E AssertionError: assert '\x1b[?2004l\...\n\x1b[?2004h' == '11'
E - 11
E +
E + 11
E +
/builddir/build/BUILD/metakernel-0.27.5/metakernel/tests/test_replwrap.py:81: AssertionError
Downgrading to readline version 8.0 makes the failure go away.
The text was updated successfully, but these errors were encountered:
After upgrading the readline library to version 8.1 the following test failure started to appear:
Downgrading to readline version 8.0 makes the failure go away.
The text was updated successfully, but these errors were encountered: