We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8528b1f commit ef52052Copy full SHA for ef52052
.ci/travis/linux/script.sh
@@ -54,6 +54,7 @@ testrunners["test_testrunner.run_failing"]=1
54
for i in "${!testrunners[@]}"
55
do
56
echo "test ${i}..."
57
- [[ $(docker exec -it qgis-testing-environment sh -c "cd /tests_directory && qgis_testrunner.sh ${i}" &>/dev/null) -eq "${testrunners[$i]}" ]] && echo "success" || exit 1
+ docker exec -it qgis-testing-environment sh -c "cd /tests_directory && qgis_testrunner.sh ${i}" &>/dev/null
58
+ [[ $? -eq "${testrunners[$i]}" ]] && echo "success" || exit 1
59
done
60
echo "travis_fold:end:docker_test_runners"
0 commit comments