From c4a66bb428ef7565208c9b9aa6986af689b3b289 Mon Sep 17 00:00:00 2001 From: David Dworken Date: Sun, 23 Oct 2022 15:07:28 -0700 Subject: [PATCH] Remove -v from make test for shorter output --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 756c19d..67758ae 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ forcetest: go clean -testcache - HISHTORY_TEST=1 go test -v -p 1 -timeout 30m ./... + HISHTORY_TEST=1 go test -p 1 -timeout 30m ./... test: - HISHTORY_TEST=1 go test -v -p 1 -timeout 30m ./... + HISHTORY_TEST=1 go test -p 1 -timeout 30m ./... acttest: act push -j test -e .github/push_event.json --reuse --container-architecture linux/amd64