summaryrefslogtreecommitdiff
path: root/util/travis_test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'util/travis_test.sh')
-rw-r--r--util/travis_test.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/util/travis_test.sh b/util/travis_test.sh
deleted file mode 100644
index 9156147ca6..0000000000
--- a/util/travis_test.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env bash
-
-source util/travis_utils.sh
-
-if [[ "$TRAVIS_COMMIT_MESSAGE" == *"[skip test]"* ]]; then
- echo "Skipping due to commit message"
- exit 0
-fi
-
-exit_code=0
-
-if [ "$LOCAL_BRANCH" == "master" ] || [ "$NUM_CORE_CHANGES" != "0" ]; then
- echo "Running tests."
- make test:all
- : $((exit_code = $exit_code + $?))
-
-fi
-
-exit $exit_code