From e4604addb7cd096d04196e9596d083b4189dd1f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vytautas=20=C5=A0altenis?= Date: Sat, 18 Aug 2018 23:17:57 +0300 Subject: [PATCH] Drop race detector from Travis builds 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). --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2f3351d7..cfdbdd9e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 ./...