From da3fe627f771bd008ce8490d24c7c401cec8cea5 Mon Sep 17 00:00:00 2001 From: Petr Karmashev Date: Wed, 5 Jun 2019 00:48:41 +0300 Subject: [PATCH] Update test.sh --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index 34dbbfb..88c4e8b 100644 --- a/test.sh +++ b/test.sh @@ -4,7 +4,7 @@ set -e echo "" > coverage.txt for d in $(go list ./... | grep -v vendor); do - go test -race -coverprofile=profile.out -covermode=atomic $d + go test -v -race -coverprofile=profile.out -covermode=atomic $d if [ -f profile.out ]; then cat profile.out >> coverage.txt rm profile.out