Skip to content

Commit

Permalink
add make test-short for running short tests with quiet logs (#13628)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmank88 authored Jul 1, 2024
1 parent 3f8c00a commit e7199f7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ goreleaser-dev-release: ## run goreleaser snapshot release
modgraph:
./tools/bin/modgraph > go.md

.PHONY: test-short
test-short: ## Run 'go test -short' and suppress uninteresting output
go test -short ./... | grep -v "[no test files]" | grep -v "\(cached\)"

help:
@echo ""
@echo " .__ .__ .__ .__ __"
Expand Down

0 comments on commit e7199f7

Please sign in to comment.