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 6314f3c commit 42704a1Copy full SHA for 42704a1
.gitignore
@@ -8,6 +8,9 @@
8
# Test binary, build with `go test -c`
9
*.test
10
11
+# Test coverages
12
+coverage.txt
13
+
14
# Output of the go coverage tool, specifically when used with LiteIDE
15
*.out
16
.travis.yml
@@ -15,7 +15,8 @@ install:
- go get -v github.com/stretchr/testify
17
script:
18
- - go test -race -coverprofile=coverage.txt -covermode=atomic
+ # - go test -race -coverprofile=coverage.txt -covermode=atomic
19
+ - go test -coverprofile=coverage.txt -covermode=atomic
20
21
after_success:
22
- bash <(curl -s https://codecov.io/bash)
0 commit comments