swi-prolog: update to 9.2.9
[oi-userland.git] / components / python / pexpect / patches / 04-test-skip-failing-bash.patch
blob0422477b23435b25da029e445e029ab1b1787fbe
1 --- pexpect-4.9/tests/test_replwrap.py.orig
2 +++ pexpect-4.9/tests/test_replwrap.py
3 @@ -7,6 +7,8 @@
4 import pexpect
5 from pexpect import replwrap
7 +import pytest
9 skip_pypy = "This test fails on PyPy because of REPL differences"
12 @@ -23,6 +25,7 @@
13 os.putenv('PS1', self.save_ps1)
14 os.putenv('PS2', self.save_ps2)
16 + @pytest.mark.skip(reason="always fails: https://github.com/pexpect/pexpect/issues/568")
17 def test_bash(self):
18 bash = replwrap.bash()
19 res = bash.run_command("alias xyzzy=true; alias")
20 @@ -41,6 +44,7 @@
21 res = bash.run_command('man sleep', timeout=5)
22 assert 'SLEEP' in res.upper(), res
24 + @pytest.mark.skip(reason="always fails: https://github.com/pexpect/pexpect/issues/568")
25 def test_bash_env(self):
26 """env, which displays PS1=..., should not mess up finding the prompt.
27 """