mirror of
https://github.com/prometheus-community/postgres_exporter
synced 2025-04-06 17:22:09 +00:00
Update Makefile test handling.
This commit is contained in:
parent
34ffcb449d
commit
8a1a12fd05
2
.gitignore
vendored
2
.gitignore
vendored
@ -10,4 +10,4 @@ cover.out
|
||||
cover.*.out
|
||||
.coverage
|
||||
*.prom
|
||||
|
||||
.metrics.*.*.prom
|
||||
|
4
Makefile
4
Makefile
@ -43,10 +43,10 @@ fmt: tools
|
||||
gofmt -s -w $(GO_SRC)
|
||||
|
||||
test: tools
|
||||
@rm -rf $(COVERDIR)
|
||||
@mkdir -p $(COVERDIR)
|
||||
@rm -f $(COVERDIR)/*
|
||||
for pkg in $(GO_PKGS) ; do \
|
||||
go test -v -covermode count -coverprofile=$(COVERDIR)/$(echo $$pkg | tr '/' '-').out $(pkg) ; \
|
||||
go test -v -covermode count -coverprofile=$(COVERDIR)/$$(echo $$pkg | tr '/' '-').out $$pkg ; \
|
||||
done
|
||||
gocovmerge $(shell find $(COVERDIR) -name '*.out') > cover.out
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user