Skip to content

Commit

Permalink
fix test makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexeyzem committed Dec 19, 2024
1 parent f3e891c commit f890abd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
test:
go test -v ./... -coverprofile=cover.out && go tool cover -html=cover.out -o cover.html
go test ./... -coverprofile=cover.out \
&& go tool cover -func=cover.out | grep -vE "*mock.go|*easyjson.go|*pb.go|*mock_helper.go" \
&& go tool cover -html=cover.out -o cover.html


start:
docker compose up --build
Expand Down

0 comments on commit f890abd

Please sign in to comment.