diff options
Diffstat (limited to 'vendor/gopkg.in/ini.v1/Makefile')
-rw-r--r-- | vendor/gopkg.in/ini.v1/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/vendor/gopkg.in/ini.v1/Makefile b/vendor/gopkg.in/ini.v1/Makefile index ac034e5258..1316911d2d 100644 --- a/vendor/gopkg.in/ini.v1/Makefile +++ b/vendor/gopkg.in/ini.v1/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
\ No newline at end of file |