From 144a37ec068485f2fe3b04b652e0316908c75eff Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 29 May 2016 18:47:58 +0200 Subject: [PATCH] travis_run: Show tox exit status --- scripts/dev/ci/travis_run.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/dev/ci/travis_run.sh b/scripts/dev/ci/travis_run.sh index 6e4539d26..80df65884 100644 --- a/scripts/dev/ci/travis_run.sh +++ b/scripts/dev/ci/travis_run.sh @@ -12,4 +12,9 @@ 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