We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a4b1a5 commit 4bee618Copy full SHA for 4bee618
.coverage/.gitkeep
.gitignore
@@ -8,6 +8,5 @@ postgres_exporter_integration_test
8
*.iml
9
cover.out
10
cover.*.out
11
-.coverage
12
*.prom
13
.metrics.*.*.prom
Makefile
@@ -1,5 +1,5 @@
1
2
-COVERDIR = /tmp/coverage/
+COVERDIR = .coverage
3
TOOLDIR = tools
4
5
GO_SRC := $(shell find . -name '*.go' ! -path '*/vendor/*' ! -path 'tools/*' )
@@ -43,7 +43,6 @@ fmt: tools
43
gofmt -s -w $(GO_SRC)
44
45
test: tools
46
- mkdir -p $(COVERDIR)
47
rm -f $(COVERDIR)/*
48
for pkg in $(GO_PKGS) ; do \
49
go test -v -covermode count -coverprofile=$(COVERDIR)/$$(echo $$pkg | tr '/' '-').out $$pkg ; \
0 commit comments