Expose backend coverage in dev mode through web

Generate backend coverage in ci
This commit is contained in:
Jamie Curnow
2023-07-27 13:44:38 +10:00
parent 9faa36315f
commit d8a3726f3a
2 changed files with 8 additions and 1 deletions

View File

@ -43,7 +43,9 @@ if [ "${1:-}" = "--inside-docker" ]; then
echo -e "${BLUE} ${CYAN}Testing backend code${RESET}"
cd /app/backend
[ -z "$(go tool fix -diff ./internal)" ]
go test -json -cover ./internal/... | tparse
go test -json -cover -coverprofile="$DIR/../../coverage.out" ./internal/... | tparse
go tool cover -html="$DIR/../../coverage.out" -o "$DIR/../../coverage.html"
rm -f "$DIR/../../coverage.out"
golangci-lint -v run ./...
else
# run this script from within docker