Bring back dependency on gocov.

This commit is contained in:
Andrey Smirnov
2013-12-15 12:22:48 +04:00
parent dbc3b946d5
commit 54e1ec1065
+2 -1
View File
@@ -25,6 +25,7 @@ cover-prepare:
go get github.com/golang/lint/golint
go get github.com/matm/gocov-html
go get github.com/mattn/goveralls
go get github.com/axw/gocov/gocov
go get code.google.com/p/go.tools/cmd/cover
coverage:
@@ -41,6 +42,6 @@ test:
go test -v ./...
coveralls:
$(GOVERALLS) -service travis-ci.org -package="./..." $(COVERALLS_TOKEN)
@$(GOVERALLS) -service travis-ci.org -package="./..." $(COVERALLS_TOKEN)
.PHONY: prepare cover-prepare coverage check test coveralls travis