summaryrefslogtreecommitdiff
path: root/test.sh
diff options
context:
space:
mode:
authorEyal Posener <[email protected]>2019-07-05 14:39:11 +0300
committerEyal Posener <[email protected]>2019-07-05 17:29:21 +0300
commitf71e6baaf2e0d387a847f8e599af7d75be650283 (patch)
treeacdad871b38d151a5070b181e0039345181e8bd2 /test.sh
parent6ffe496ea9530c0638974624ed9dd429f9ad592e (diff)
Travis: remove test.sh, improve travis file
Diffstat (limited to 'test.sh')
-rwxr-xr-xtest.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/test.sh b/test.sh
deleted file mode 100755
index 56bfcf1..0000000
--- a/test.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-echo "" > coverage.txt
-
-for d in $(go list ./... | grep -v vendor); do
- go test -v -race -coverprofile=profile.out -covermode=atomic $d
- if [ -f profile.out ]; then
- cat profile.out >> coverage.txt
- rm profile.out
- fi
-done \ No newline at end of file