diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -2,7 +2,7 @@ # with Go source code. If you know what GOPATH is then you probably # don't need to bother with make. -.PHONY: geth mist test clean +.PHONY: geth mist all test travis-test-with-coverage clean GOBIN = build/bin geth: @@ -21,5 +21,8 @@ all: test: all build/env.sh go test ./... +travis-test-with-coverage: all + build/env.sh build/test-global-coverage.sh + clean: rm -fr build/_workspace/pkg/ Godeps/_workspace/pkg $(GOBIN)/* |