From ccd949d8ca068ddc406f58479132f2101c30493b Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Fri, 27 Jan 2017 12:31:02 -0800 Subject: [PATCH] Add -v for race tests to avoid travis and appveyor timeouts. (#3647) This is added so that CI's don't wrong fully timeout on little longer running tests. --- .travis.yml | 2 +- appveyor.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index fdf9bd708..cbe34000e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ env: script: - make -- make test GOFLAGS="-race" +- make test GOFLAGS="-race -v" - make coverage after_success: diff --git a/appveyor.yml b/appveyor.yml index 2e1dfd420..7488c103a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -35,8 +35,8 @@ test_script: # Unit tests - ps: Add-AppveyorTest "Unit Tests" -Outcome Running - mkdir build\coverage - - go test -timeout 15m -race github.com/minio/minio/cmd... - - go test -race github.com/minio/minio/pkg... + - go test -timeout 15m -v -race github.com/minio/minio/cmd... + - go test -v -race github.com/minio/minio/pkg... - go test -coverprofile=build\coverage\coverage.txt -covermode=atomic github.com/minio/minio/cmd - ps: Update-AppveyorTest "Unit Tests" -Outcome Passed