Skip to content

Commit

Permalink
fix path again
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Mar 6, 2019
1 parent 2c7ec99 commit b81f5d5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .ci/travis/linux/docker-build-test.sh
Expand Up @@ -170,12 +170,12 @@ popd > /dev/null # /root/QGIS
##############################
# Run Python Tests on QGIS app
##############################
pushd /root/qgis_test_runner
# Passing cases:
[[ $(qgis_testrunner.sh test_testrunner.run_passing) -eq '0' ]] || exit 1
[[ $(qgis_testrunner.sh test_testrunner.run_skipped_and_passing) -eq '0' ]] || exit 1
echo "QGIS tests runner"
cd /root/qgis_test_runner && [[ $(qgis_testrunner.sh test_testrunner.run_passing) -eq '0' ]] && echo "1/5 succeeded" || exit 1
cd /root/qgis_test_runner && [[ $(qgis_testrunner.sh test_testrunner.run_skipped_and_passing) -eq '0' ]] && echo "2/5 succeeded" || exit 1
# Failing cases:
[[ $(qgis_testrunner.sh test_testrunner) -eq '1' ]] || exit 1
[[ $(qgis_testrunner.sh test_testrunner.run_all) -eq '1' ]] || exit 1
[[ $(qgis_testrunner.sh test_testrunner.run_failing) -eq '1' ]] || exit 1
cd /root/qgis_test_runner && [[ $(qgis_testrunner.sh test_testrunner) -eq '1' ]] && echo "3/5 succeeded" || exit 1
cd /root/qgis_test_runner && [[ $(qgis_testrunner.sh test_testrunner.run_all) -eq '1' ]] && echo "4/5 succeeded" || exit 1
cd /root/qgis_test_runner && [[ $(qgis_testrunner.sh test_testrunner.run_failing) -eq '1' ]] && echo "5/5 succeeded" || exit 1
popd

0 comments on commit b81f5d5

Please sign in to comment.