1
0

Added tests for team members

This commit is contained in:
kolaente
2018-07-27 19:20:49 +02:00
parent d556162591
commit 261136c2bc
8 changed files with 112 additions and 2 deletions

View File

@ -55,6 +55,7 @@ clean:
.PHONY: test
test:
go test -cover -coverprofile cover.out $(PACKAGES)
go tool cover -html=cover.out -o cover.html
required-gofmt-version:
@go version | grep -q '\(1.7\|1.8\|1.9\|1.10\)' || { echo "We require go version 1.7, 1.8, 1.9 or 1.10 to format code" >&2 && exit 1; }