Skip to content

Commit

Permalink
build: remove race check
Browse files Browse the repository at this point in the history
Signed-off-by: deadprogram <[email protected]>
  • Loading branch information
deadprogram committed May 3, 2017
1 parent ff39cf6 commit c447a72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ before_script:
script:
- echo "Ensuring code is well formatted"; ! gofmt -s -d . | read
- bash -c 'set -e; echo "" > coverage.txt; for d in $(go list ./...); do go test -covermode=count -coverprofile=p.out $d; if [ -f p.out ]; then cat p.out >> coverage.txt; rm p.out; fi; done'
- go test -race ./...
- bash -c 'set -e; for d in $(go list ./...); do go test -race $d; done'
after_success:
- bash <(curl -s https://codecov.io/bash)
branches:
Expand Down

0 comments on commit c447a72

Please sign in to comment.