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 fa38bce commit c7897a2Copy full SHA for c7897a2
.gitignore
@@ -4,6 +4,9 @@
4
# configuration files
5
/*.toml
6
7
+# coverage file
8
+/coverage.out
9
+
10
# certificates
11
/certs
12
Makefile
@@ -15,11 +15,12 @@ clean:
15
16
test:
17
@echo "Running tests"
18
+ @rm -f coverage.out
19
@for pkg in $(PKGS) ; do \
20
golint $$pkg ; \
21
done
22
@go vet $(PKGS)
- @go test -cover -v $(PKGS)
23
+ @go test -cover -v $(PKGS) -coverprofile coverage.out
24
25
dist:
26
@goreleaser
0 commit comments