diff --git a/tests/functional/test_fish.py b/tests/functional/test_fish.py index 5ff7f5c0..c3368085 100644 --- a/tests/functional/test_fish.py +++ b/tests/functional/test_fish.py @@ -37,6 +37,8 @@ def test_with_confirmation(proc): @functional +@pytest.mark.skipif( + bool(bare), reason='https://github.com/travis-ci/apt-source-whitelist/issues/71') def test_select_command_with_arrows(proc): select_command_with_arrows(proc) diff --git a/tests/functional/utils.py b/tests/functional/utils.py index 2ca2b839..a1aeebb2 100644 --- a/tests/functional/utils.py +++ b/tests/functional/utils.py @@ -33,7 +33,7 @@ def spawn(request, tag, dockerfile, cmd): proc = pexpect.spawnu('docker run --volume {}:/src --tty=true ' '--interactive=true {} {}'.format(root, tag, cmd)) proc.sendline('pip install /src') - proc.sendline('cd /') + proc.sendline('cd /') proc.logfile = sys.stdout