diff --git a/Makefile b/Makefile index b9c78dd..3502f9f 100644 --- a/Makefile +++ b/Makefile @@ -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; diff --git a/server/.gitignore b/server/.gitignore new file mode 100644 index 0000000..c57100a --- /dev/null +++ b/server/.gitignore @@ -0,0 +1 @@ +coverage.txt