We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4ff0e3 commit 66da588Copy full SHA for 66da588
.travis.yml
@@ -7,11 +7,11 @@ go:
7
branches:
8
only:
9
- master
10
- - stable
+# - stable
11
12
script:
13
- go get -t -v ./...
14
-- go vet ./...
+#- go vet ./...
15
- bash ./test.sh
16
17
after_success:
test.sh
@@ -4,11 +4,12 @@
4
set -e
5
echo "" > coverage.txt
6
-for d in $(go list ./... | grep -v vendor); do
- echo $d
- go test -coverprofile=profile.out -covermode=atomic $d
- if [ -f profile.out ]; then
- cat profile.out >> coverage.txt
- rm profile.out
- fi
-done
+#for d in $(go list ./... | grep -v vendor); do
+# echo $d
+# go test -coverprofile=profile.out -covermode=atomic $d
+# if [ -f profile.out ]; then
+# cat profile.out >> coverage.txt
+# rm profile.out
+# fi
+#done
+
0 commit comments