From 5a12bbca53717df2e2a1eb50e4b54f7cf576b655 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vytautas=20=C5=A0altenis?= Date: Sun, 19 Aug 2018 14:08:23 +0300 Subject: [PATCH] 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). --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2f3351d..cfdbdd9 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 ./...