QGIS/scripts/runtests_local_travis_config.sh
Nyall Dawson 85d543a739 Rename scripts to swap "-" for "_" for consistency
We had a confusing and unpredictable mix of script names with
- vs _, e.g. scripts/prepare-commit.sh vs scripts/sipify_all.sh

This unifies with the preferred _ convention for script file names
2020-04-28 02:22:33 +10:00

7 lines
222 B
Bash
Executable File

#!/usr/bin/env bash
DIR=$(git rev-parse --show-toplevel)
cd $1 || exit
FOLDER=linux
ctest -E "$(cat ${DIR}/.ci/travis/${FOLDER}/blacklist.txt | sed -r '/^(#.*?)?$/d' | paste -sd '|' -)" --output-on-failure
cd $DIR || exit