From 0a7aa623b6e170572a929a54c20011342d098ecb Mon Sep 17 00:00:00 2001 From: Andrey Samokhvalov Date: Sun, 25 Jun 2017 15:18:33 +0300 Subject: [PATCH] test: execute package tests linearly once again --- gotest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gotest.sh b/gotest.sh index ccbf6b5c..b444c9a8 100755 --- a/gotest.sh +++ b/gotest.sh @@ -77,7 +77,7 @@ test_race_conditions() { check_test_ports test_targets=$(go list ./... | grep -v '/vendor/') - env GORACE="history_size=7 halt_on_error=1" go test -v -race $test_targets + env GORACE="history_size=7 halt_on_error=1" go test -v -p 1 -race $test_targets } # lint_check runs static checks.