3
0

fix(makefile): paths for rbac and store tests

This commit is contained in:
Tit Petric
2018-11-09 18:58:01 +01:00
parent 5f9136bd67
commit f6eefa4182
+2 -2
View File
@@ -112,11 +112,11 @@ test.system.db: $(GOTEST)
test.rbac: $(GOTEST)
$(GOTEST) -covermode count -coverprofile .cover.out -v ./rbac/...
$(GOTEST) -covermode count -coverprofile .cover.out -v ./internal/rbac/...
$(GO) tool cover -func=.cover.out | grep --color "^\|[^0-9]0.0%"
test.store: $(GOTEST)
$(GOTEST) -covermode count -coverprofile .cover.out -v ./store/...
$(GOTEST) -covermode count -coverprofile .cover.out -v ./internal/store/...
$(GO) tool cover -func=.cover.out | grep --color "^\|[^0-9]0.0%"
vet: