From 466ed7912dcf7313270c6ff24326477a43f62a42 Mon Sep 17 00:00:00 2001 From: Jakub Matys Date: Fri, 13 Apr 2018 16:34:56 +0200 Subject: [PATCH] removed verbose output of test targets --- build/bin/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/bin/Makefile b/build/bin/Makefile index 386d9fa1..932285c9 100644 --- a/build/bin/Makefile +++ b/build/bin/Makefile @@ -9,10 +9,10 @@ build-debug: prepare-sources chown $(PACKAGER) /out/blockbook test: prepare-sources - cd $(GOPATH)/src/blockbook && go test -v -short ./... + cd $(GOPATH)/src/blockbook && go test -short ./... test-all: prepare-sources - cd $(GOPATH)/src/blockbook && go test -v ./... + cd $(GOPATH)/src/blockbook && go test ./... prepare-sources: @ [ -n "`ls /src 2> /dev/null`" ] || (echo "/src doesn't exist or is empty" 1>&2 && exit 1)