Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
do not exit on error
  • Loading branch information
3nids committed Mar 9, 2019
1 parent 2777381 commit 829a614
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .ci/travis/linux/script.sh
Expand Up @@ -63,6 +63,7 @@ testrunners["test_testrunner.run_skipped_and_passing"]=0
testrunners["test_testrunner"]=1
testrunners["test_testrunner.run_all"]=1
testrunners["test_testrunner.run_failing"]=1
set +e # do not exit on error
# Run tests in the docker
for i in "${!testrunners[@]}"
do
Expand All @@ -72,5 +73,6 @@ do
[[ $? -eq "${testrunners[$i]}" ]] && echo "success" || exit 1
echo "travis_fold:end:docker_test_runner_${i}"
done
set -e # switch back
docker stop qgis-testing-environment
echo "travis_fold:end:docker_test_runners"

0 comments on commit 829a614

Please sign in to comment.