From 133225876760dfdf0ae22c3b57e77cf9292a503b Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 29 May 2016 20:46:48 +0200 Subject: [PATCH] Revert "travis_run: Show tox exit status" This reverts commit 144a37ec068485f2fe3b04b652e0316908c75eff. We accidentally always exit with status 0 with this... --- scripts/dev/ci/travis_run.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/scripts/dev/ci/travis_run.sh b/scripts/dev/ci/travis_run.sh index 80df65884..6e4539d26 100644 --- a/scripts/dev/ci/travis_run.sh +++ b/scripts/dev/ci/travis_run.sh @@ -12,9 +12,4 @@ else [[ $TESTENV == docs ]] && args=('--no-authors') tox -e $TESTENV -- "${args[@]}" - - tox_exit=$? - if ((tox_exit != 0)); then - echo "tox exit status: $tox_exit" - fi fi