From 40252f0aa672d351f154819cdd303931ed95f492 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Fri, 26 Feb 2016 17:01:19 +0000 Subject: [PATCH] Make continuous integrations logs less noisy --- .travis.yml | 4 ++-- appveyor.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 80122af02..36c4b68c8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,5 +20,5 @@ install: script: - make check - - go test -v ./... - - go test -cpu=2 -race -v ./... + - go test ./... + - go test -cpu=2 -race ./... diff --git a/appveyor.yml b/appveyor.yml index 8310014be..f34927594 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -17,5 +17,5 @@ install: build_script: - go vet ./... - - go test -v -cpu=2 ./... + - go test -cpu=2 ./... - go test -cpu=2 -short -race ./...