removing gocov packages (#5534)

* removing gocov packages

* revise cov make target
This commit is contained in:
Alvin Huang 2019-04-09 16:05:52 -04:00 committed by GitHub
parent ee5c6e3df6
commit 4a73702460
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 4 deletions

View File

@ -5,8 +5,6 @@ GOTOOLS = \
github.com/mitchellh/gox \ github.com/mitchellh/gox \
golang.org/x/tools/cmd/cover \ golang.org/x/tools/cmd/cover \
golang.org/x/tools/cmd/stringer \ golang.org/x/tools/cmd/stringer \
github.com/axw/gocov/gocov \
gopkg.in/matm/v1/gocov-html \
github.com/gogo/protobuf/protoc-gen-gofast \ github.com/gogo/protobuf/protoc-gen-gofast \
github.com/vektra/mockery/cmd/mockery github.com/vektra/mockery/cmd/mockery
@ -143,8 +141,8 @@ dev-tree:
@$(SHELL) $(CURDIR)/build-support/scripts/dev.sh $(DEV_PUSH_ARG) @$(SHELL) $(CURDIR)/build-support/scripts/dev.sh $(DEV_PUSH_ARG)
cov: cov:
gocov test $(GOFILES) | gocov-html > /tmp/coverage.html go test ./... -coverprofile=coverage.out
open /tmp/coverage.html go tool cover -html=coverage.out
test: other-consul dev-build vet test-install-deps test-internal test: other-consul dev-build vet test-install-deps test-internal