We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 396f667 commit 0d7c7efCopy full SHA for 0d7c7ef
1 file changed
Makefile
@@ -70,7 +70,7 @@ test:
70
SUBMODULES=$$(git config --file .gitmodules --get-regexp path | awk '{print $$2}'); \
71
PKGS=$$(go list ./... | grep -vF "$$SUBMODULES"); \
72
if gotestsum --format short-verbose $$PKGS && \
73
- go test -cover -covermode=atomic -coverpkg=$$(echo $$PKGS | tr ' ' ',') -coverprofile="$(COVER_PROFILE)" $$PKGS >/dev/null; then \
+ go test -cover -covermode=atomic -coverpkg=$$(echo $$PKGS | tr ' ' ',') -coverprofile="$(COVER_PROFILE)" $$PKGS >/dev/null; then \
74
if [ -f "$(COVER_PROFILE)" ]; then \
75
echo "$$SUBMODULES" | while read SUBMODULE; do \
76
grep -v "$$SUBMODULE" "$(COVER_PROFILE)" > "$(COVER_PROFILE).tmp" && mv "$(COVER_PROFILE).tmp" "$(COVER_PROFILE)"; \
0 commit comments