travis_run: Show tox exit status

This commit is contained in:
Florian Bruhin 2016-05-29 18:47:58 +02:00
parent 119d76c502
commit 144a37ec06

View File

@ -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