From f2a9c8ee230eca5388d783417f14f9ba7f3017d8 Mon Sep 17 00:00:00 2001 From: Ravi Suhag Date: Mon, 9 Oct 2023 07:30:28 -0500 Subject: [PATCH] chore: fix typo while running test (#392) * chore: tidy before running tests * chore: tidy before running tests --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7246bcb4..928a7fdc 100644 --- a/Makefile +++ b/Makefile @@ -33,8 +33,8 @@ clean: tidy ## Clean the build artifacts @echo "Cleaning up build directories..." @rm -rf $coverage.out ${BUILD_DIR} -test: ## Run the tests - go test ./ ... -race -coverprofile=coverage.out +test: tidy ## Run the tests + go test ./... -race -coverprofile=coverage.out test-short: @echo "Running short tests by disabling store tests..."