Skip to content

Commit

Permalink
Add race detector flag to unit test
Browse files Browse the repository at this point in the history
Unit tests should be run with the race detector flag
  • Loading branch information
khrm authored Oct 21, 2024
1 parent 225292d commit e2b2206
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 @@ -32,7 +32,7 @@ lint-go: ## runs go linter on all go files
unit: unit-tests
unit-tests: ## runs unit tests
@echo "Running Unit tests..."
go test ./...
go test -race ./...

.PHONY: fumpt ## formats the GO code with gofumpt(excludes vendors dir)
fumpt:
Expand Down

0 comments on commit e2b2206

Please sign in to comment.