python/pyproject_installer: update to 0.5.5
[oi-userland.git] / components / python / pexpect / patches / 05-test-skip-failing-tcgetattr.patch
blob2f6d7852c9166021b1f4df780065d6ac5274a414
1 --- pexpect-4.9/tests/test_replwrap.py.orig
2 +++ pexpect-4.9/tests/test_replwrap.py
3 @@ -90,6 +90,7 @@
4 res = bash.run_command("echo '1 2\n3 4'")
5 self.assertEqual(res.strip().splitlines(), ['1 2', '3 4'])
7 + @pytest.mark.skip(reason="always fails: https://github.com/pexpect/pexpect/issues/767")
8 def test_existing_spawn(self):
9 child = pexpect.spawn("bash", timeout=5, encoding='utf-8')
10 repl = replwrap.REPLWrapper(child, re.compile('[$#]'),