Use verbose mode in all test runs

This commit is contained in:
Katrina Verey
2022-04-05 15:56:32 -04:00
parent 29104d6fa9
commit e96c38e3ab
3 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ $(MYGOBIN)/gorepomod: usage.go
.PHONY: test
test: $(MYGOBIN)/gorepomod
go test ./...
go test -v ./...
usage.go: README.md $(MYGOBIN)/goimports
go generate . \

View File

@@ -8,7 +8,7 @@ include ../../Makefile-modules.mk
all: test build
test: generate
go test ./...
go test -v ./...
generate: $(MYGOBIN)/statik
( \

View File

@@ -33,7 +33,7 @@ lint: $(MYGOBIN)/golangci-lint
--skip-dirs internal/forked
test:
go test -cover ./...
go test -v -cover ./...
fix:
go fix ./...