enable coverage for server tests

This commit is contained in:
Jesse Hallam 2018-07-25 14:36:05 -04:00
parent b3b2250076
commit f9ce32a7d9
No known key found for this signature in database
GPG key ID: E7959EB6518AF966
2 changed files with 2 additions and 1 deletions

View file

@ -104,7 +104,7 @@ endif
.PHONY: test
test:
ifneq ($(HAS_SERVER),)
cd server && $(GO) test ./...
cd server && $(GO) test -v -coverprofile=coverage.txt ./...
endif
ifneq ($(HAS_WEBAPP),)
cd webapp && npm run fix;

1
server/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
coverage.txt