diff options
Diffstat (limited to 'util/travis_test.sh')
-rw-r--r-- | util/travis_test.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/util/travis_test.sh b/util/travis_test.sh deleted file mode 100644 index 9156147ca..000000000 --- a/util/travis_test.sh +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | #!/usr/bin/env bash | ||
2 | |||
3 | source util/travis_utils.sh | ||
4 | |||
5 | if [[ "$TRAVIS_COMMIT_MESSAGE" == *"[skip test]"* ]]; then | ||
6 | echo "Skipping due to commit message" | ||
7 | exit 0 | ||
8 | fi | ||
9 | |||
10 | exit_code=0 | ||
11 | |||
12 | if [ "$LOCAL_BRANCH" == "master" ] || [ "$NUM_CORE_CHANGES" != "0" ]; then | ||
13 | echo "Running tests." | ||
14 | make test:all | ||
15 | : $((exit_code = $exit_code + $?)) | ||
16 | |||
17 | fi | ||
18 | |||
19 | exit $exit_code | ||