1
0
mirror of https://github.com/prometheus-community/postgres_exporter.git synced 2025-08-09 15:42:47 +03:00

add coverage folder

This commit is contained in:
Matthias Berkenkamp
2017-08-01 10:18:28 +02:00
committed by Will Rouesnel
parent 5a4b1a5f81
commit 4bee618699
3 changed files with 1 additions and 3 deletions

0
.coverage/.gitkeep Normal file
View File

1
.gitignore vendored
View File

@@ -8,6 +8,5 @@ postgres_exporter_integration_test
*.iml *.iml
cover.out cover.out
cover.*.out cover.*.out
.coverage
*.prom *.prom
.metrics.*.*.prom .metrics.*.*.prom

View File

@@ -1,5 +1,5 @@
COVERDIR = /tmp/coverage/ COVERDIR = .coverage
TOOLDIR = tools TOOLDIR = tools
GO_SRC := $(shell find . -name '*.go' ! -path '*/vendor/*' ! -path 'tools/*' ) GO_SRC := $(shell find . -name '*.go' ! -path '*/vendor/*' ! -path 'tools/*' )
@@ -43,7 +43,6 @@ fmt: tools
gofmt -s -w $(GO_SRC) gofmt -s -w $(GO_SRC)
test: tools test: tools
mkdir -p $(COVERDIR)
rm -f $(COVERDIR)/* rm -f $(COVERDIR)/*
for pkg in $(GO_PKGS) ; do \ 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 ; \