Drop race detector from Travis builds (#474)

We do not have a single go statement in Blackfriday code, -race does
nothing for us, but burn CPU cycles (and it hurts because we're hitting
timeouts on full test runs).
This commit is contained in:
Vytautas Šaltenis 2018-08-19 14:08:23 +03:00 committed by GitHub
parent 0e0e3095cb
commit 5a12bbca53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,4 +14,4 @@ script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d -s .)
- go tool vet .
- go test -v -race ./...
- go test -v ./...