diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,4 +1,4 @@ -.PHONY: validate verify verify_ruby verify_golang test test_ruby test_golang setup _install build compile check clean +.PHONY: validate verify verify_ruby verify_golang test test_ruby test_golang coverage coverage_golang setup _install build compile check clean GO_SOURCES := $(shell find . -name '*.go') @@ -19,11 +19,16 @@ test_ruby: bundle exec rspec --color --format d spec test_golang: - go test ./... + go test -cover -coverprofile=cover.out ./... test_golang_race: go test -race ./... +coverage: coverage_golang + +coverage_golang: + [ -f cover.out ] && go tool cover -func cover.out + setup: _install bin/gitlab-shell _install: |