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 94524c1 commit 3b5b536Copy full SHA for 3b5b536
.travis.yml
@@ -5,7 +5,7 @@ sudo: false
5
branches:
6
only:
7
- master
8
- - develop
+ - integration
9
10
go:
11
- 1.6
go.test.sh
@@ -4,7 +4,7 @@ set -e
4
echo "" > coverage.txt
for d in $(go list ./... | grep -v vendor); do
- go test -v -coverprofile=profile.out -covermode=atomic $d
+ go test -race -coverprofile=profile.out -covermode=atomic $d
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
rm profile.out
0 commit comments