summaryrefslogtreecommitdiff
path: root/vendor/github.com/go-ini/ini/Makefile
diff options
context:
space:
mode:
authorVictor Häggqvist <[email protected]>2018-03-05 22:19:22 +0100
committerVictor Häggqvist <[email protected]>2018-03-05 22:19:22 +0100
commitf96b7fc1e15ad88c80814e6b153c74453098f499 (patch)
tree92813eab3a38ad4f177bedef5e5c402bec8a9699 /vendor/github.com/go-ini/ini/Makefile
parent6e1582f6e7f4148c25e58dc44a080d441e95db85 (diff)
update vendor to use dep
Diffstat (limited to 'vendor/github.com/go-ini/ini/Makefile')
-rw-r--r--vendor/github.com/go-ini/ini/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/github.com/go-ini/ini/Makefile b/vendor/github.com/go-ini/ini/Makefile
new file mode 100644
index 0000000..1316911
--- /dev/null
+++ b/vendor/github.com/go-ini/ini/Makefile
@@ -0,0 +1,15 @@
+.PHONY: build test bench vet coverage
+
+build: vet bench
+
+test:
+ go test -v -cover -race
+
+bench:
+ go test -v -cover -race -test.bench=. -test.benchmem
+
+vet:
+ go vet
+
+coverage:
+ go test -coverprofile=c.out && go tool cover -html=c.out && rm c.out \ No newline at end of file