test: simplify makefile

This commit is contained in:
Frank Schroeder 2017-05-12 14:13:52 +02:00 committed by Frank Schröder
parent 29f9b9b22a
commit 1f0a7511b0
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ cov:
test: dev
go test -tags "$(GOTAGS)" -i -run '^$$' ./...
( set -o pipefail ; go test -tags "$(GOTAGS)" -v $(GOFILES) | tee test.log )
( set -o pipefail ; go test -tags "$(GOTAGS)" -v ./... | tee test.log )
cover:
go test $(GOFILES) --cover