Skip to content

Commit 829a614

Browse files
committed
do not exit on error
1 parent 2777381 commit 829a614

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.ci/travis/linux/script.sh

+2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ testrunners["test_testrunner.run_skipped_and_passing"]=0
6363
testrunners["test_testrunner"]=1
6464
testrunners["test_testrunner.run_all"]=1
6565
testrunners["test_testrunner.run_failing"]=1
66+
set +e # do not exit on error
6667
# Run tests in the docker
6768
for i in "${!testrunners[@]}"
6869
do
@@ -72,5 +73,6 @@ do
7273
[[ $? -eq "${testrunners[$i]}" ]] && echo "success" || exit 1
7374
echo "travis_fold:end:docker_test_runner_${i}"
7475
done
76+
set -e # switch back
7577
docker stop qgis-testing-environment
7678
echo "travis_fold:end:docker_test_runners"

0 commit comments

Comments
 (0)