Makefile: Improve test command

This commit is contained in:
theresa 2022-11-11 13:46:00 +01:00
parent 4fc131c1b9
commit ff78b28d87

View file

@ -285,6 +285,7 @@ test-coverage:
$(info Running all Go tests with code coverage report...)
go test -parallel 1 -count 1 -cpu 1 -failfast -tags slow -timeout 30m -coverprofile coverage.txt -covermode atomic ./pkg/... ./internal/...
go tool cover -html=coverage.txt -o coverage.html
go tool cover -func coverage.txt | grep total:
docker-pull:
docker compose pull --ignore-pull-failures
docker compose -f docker-compose.latest.yml pull --ignore-pull-failures