2014-01-21 19:56:17 +00:00
|
|
|
COVERPROFILE=cover.out
|
2013-08-02 09:20:01 +00:00
|
|
|
|
2014-01-21 17:00:59 +00:00
|
|
|
default: test
|
|
|
|
|
|
|
|
cover:
|
|
|
|
go test -coverprofile=$(COVERPROFILE) .
|
|
|
|
go tool cover -html=$(COVERPROFILE)
|
|
|
|
rm $(COVERPROFILE)
|
2013-08-02 09:20:01 +00:00
|
|
|
|
|
|
|
dependencies:
|
|
|
|
go get -d .
|
|
|
|
|
|
|
|
test:
|
2013-12-07 07:30:13 +00:00
|
|
|
go test -i ./...
|
2013-08-02 09:20:01 +00:00
|
|
|
go test -v ./...
|
|
|
|
|
|
|
|
.PHONY: coverage dependencies test
|