diff --git a/Makefile b/Makefile index 1f2435f8c..4352d184c 100644 --- a/Makefile +++ b/Makefile @@ -32,6 +32,10 @@ clean: tidy test: go test ./... -race -coverprofile=coverage.out +test-short: + @echo "Running short tests by disabling store tests..." + go test ./... -race -short -coverprofile=coverage.out + coverage: test @echo "Generating coverage report..." @go tool cover -html=coverage.out