From 5d963e1a35c96d7c1e27526c15cc2d4fd7cec108 Mon Sep 17 00:00:00 2001 From: sushmith Date: Tue, 12 Sep 2023 11:34:01 +0530 Subject: [PATCH] chore: add test-short make directive --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) 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