Skip to content

Commit

Permalink
Makefile: don't need to grep -v vendor anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinburke committed Nov 7, 2023
1 parent a42f10f commit 7bb8036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -93,7 +93,7 @@ benchmark-ci:
go test -bench=. -run='^$$' -v ./...

bench: | $(BENCHSTAT)
go list ./... | grep -v vendor | xargs go test -p=1 -benchtime=2s -bench=. -run='^$$' 2>&1 | $(BENCHSTAT) /dev/stdin
go test -p=1 -benchtime=2s -bench=. -run='^$$' 2>&1 | $(BENCHSTAT) /dev/stdin

sql:
sqlc generate
Expand Down

0 comments on commit 7bb8036

Please sign in to comment.