3
0

add(makefile): test.store target

This commit is contained in:
Tit Petric
2018-09-07 16:06:29 +02:00
parent bc2fad874d
commit bf9ca1ac1e

View File

@@ -80,6 +80,10 @@ test.rbac: $(GOTEST)
$(GOTEST) -covermode count -coverprofile .cover.out -v ./rbac/...
$(GO) tool cover -func=.cover.out | grep --color "^\|[^0-9]0.0%"
test.store: $(GOTEST)
$(GOTEST) -covermode count -coverprofile .cover.out -v ./store/...
$(GO) tool cover -func=.cover.out | grep --color "^\|[^0-9]0.0%"
vet:
$(GO) vet ./...