allow CI not to swallow the test errors

This commit is contained in:
HoneyryderChuck 2018-02-14 07:31:42 +00:00
parent 8e4934b377
commit 5aed4c1972

View File

@ -8,6 +8,8 @@ cleanup () {
docker-compose -p ci rm -f --all
}
trap cleanup exit
if [ -z $VERSION ]; then
extra=""
else
@ -24,4 +26,3 @@ docker-compose -f docker-compose.yml ${extra} -p ci up \
# TEST_EXIT_CODE=`docker wait ci_httpx_1`
# docker run --env PARALLEL=1 COVERAGE=1 httpx rake test
trap cleanup exit