aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/go-ini/ini/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/go-ini/ini/Makefile')
-rw-r--r--vendor/github.com/go-ini/ini/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/vendor/github.com/go-ini/ini/Makefile b/vendor/github.com/go-ini/ini/Makefile
index ac034e5..af27ff0 100644
--- a/vendor/github.com/go-ini/ini/Makefile
+++ b/vendor/github.com/go-ini/ini/Makefile
@@ -1,4 +1,4 @@
-.PHONY: build test bench vet
+.PHONY: build test bench vet coverage
build: vet bench
@@ -10,3 +10,6 @@ bench:
vet:
go vet
+
+coverage:
+ go test -coverprofile=c.out && go tool cover -html=c.out && rm c.out