aboutsummaryrefslogtreecommitdiff
path: root/travis_tests.sh
diff options
context:
space:
mode:
authorEmiliano Ciavatta2020-04-07 18:46:36 +0000
committerEmiliano Ciavatta2020-04-07 18:46:56 +0000
commit468690c60ee2e57ed2ccb4375e9ada5d2fed9473 (patch)
tree138b9f4c69731abef66e789b0e044417824f5c49 /travis_tests.sh
parent590405d948530aecdf7399833c3d0b8585f5601b (diff)
Before storage refactor
Diffstat (limited to 'travis_tests.sh')
-rwxr-xr-xtravis_tests.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/travis_tests.sh b/travis_tests.sh
deleted file mode 100755
index 5c51823..0000000
--- a/travis_tests.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-
-# wait mongodb server
-sleep 10
-
-# run tests
-go test -v -race -coverprofile=coverage.txt -covermode=atomic
-
-RET_CODE=$?
-
-#
-if [ $RET_CODE -eq 0 ]; then
- echo "travis_tests_success"
-else
- echo "travis_tests_fails"
-fi
-
-exit $RET_CODE