Only run coverage on merges/pushes to master (#1783)
This commit is contained in:
parent
19d889daa2
commit
ff96bda138
2 changed files with 7 additions and 1 deletions
4
Makefile
4
Makefile
|
@ -80,6 +80,10 @@ integrations: build
|
|||
|
||||
.PHONY: test
|
||||
test:
|
||||
go test $(PACKAGES)
|
||||
|
||||
.PHONY: test-coverage
|
||||
test-coverage:
|
||||
for PKG in $(PACKAGES); do go test -cover -coverprofile $$GOPATH/src/$$PKG/coverage.out $$PKG || exit 1; done;
|
||||
|
||||
.PHONY: test-vendor
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue