1 --- pexpect-4.9/tests/test_replwrap.py.orig
2 +++ pexpect-4.9/tests/test_replwrap.py
5 from pexpect import replwrap
9 skip_pypy = "This test fails on PyPy because of REPL differences"
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")
18 bash = replwrap.bash()
19 res = bash.run_command("alias xyzzy=true; alias")
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.