We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2777381 commit 829a614Copy full SHA for 829a614
.ci/travis/linux/script.sh
@@ -63,6 +63,7 @@ testrunners["test_testrunner.run_skipped_and_passing"]=0
63
testrunners["test_testrunner"]=1
64
testrunners["test_testrunner.run_all"]=1
65
testrunners["test_testrunner.run_failing"]=1
66
+set +e # do not exit on error
67
# Run tests in the docker
68
for i in "${!testrunners[@]}"
69
do
@@ -72,5 +73,6 @@ do
72
73
[[ $? -eq "${testrunners[$i]}" ]] && echo "success" || exit 1
74
echo "travis_fold:end:docker_test_runner_${i}"
75
done
76
+set -e # switch back
77
docker stop qgis-testing-environment
78
echo "travis_fold:end:docker_test_runners"
0 commit comments