chore: fix makefile

This commit is contained in:
Prem Chaitanya Prathi 2024-02-21 11:22:56 +05:30
parent e399ea70a4
commit 6fbe631f2c
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -77,10 +77,10 @@ lint-full:
@golangci-lint run ./... --config=./.golangci.full.yaml --deadline=5m
test-with-race:
${GOBIN} test -race -timeout 300s ./waku/... ./cmd/waku/server/...
${GOBIN} test -race -timeout 300s ./waku/...
test:
${GOBIN} test -timeout 300s ./waku/... ./cmd/waku/server/... -coverprofile=${GO_TEST_OUTFILE}.tmp -coverpkg ./...
${GOBIN} test -timeout 300s ./waku/... -coverprofile=${GO_TEST_OUTFILE}.tmp -coverpkg ./...
cat ${GO_TEST_OUTFILE}.tmp | grep -v ".pb.go" > ${GO_TEST_OUTFILE}
${GOBIN} tool cover -html=${GO_TEST_OUTFILE} -o ${GO_HTML_COV}