Skip to content

Commit

Permalink
chore: skip proto files in test coverage calculation (#806)
Browse files Browse the repository at this point in the history
  • Loading branch information
anujk14 authored Oct 24, 2024
1 parent 98f6cdf commit f415dfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ lint-fix:
golangci-lint run --fix

test: ## Run tests
@go test -race $(shell go list ./... | grep -v /ui | grep -v /vendor/ | grep -v /test/ | grep -v /mocks | grep -v postgres/migrations) -coverprofile=coverage.out -count 2 -timeout 150s
@go test -race $(shell go list ./... | grep -v /ui | grep -v /vendor/ | grep -v /test/ | grep -v /mocks | grep -v postgres/migrations | grep -v /proto) -coverprofile=coverage.out -count 2 -timeout 150s

test-all: lint test e2e-test ## Run all tests

Expand Down

0 comments on commit f415dfa

Please sign in to comment.