From da3bc60942c2d8ba475ae4efa41fc0acdbe05798 Mon Sep 17 00:00:00 2001 From: nvbn Date: Thu, 30 Jul 2015 18:39:41 +0300 Subject: [PATCH] #298 Fix arrow-tests on travis-ci --- tests/functional/test_fish.py | 2 ++ tests/functional/utils.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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