From 70d554fb641fbd2b09833316c66468f99e3f41ba Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 20 May 2025 09:38:50 +0300 Subject: fix unit tests --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1f216e3..b4956ca 100644 --- a/Makefile +++ b/Makefile @@ -56,17 +56,17 @@ prof: .PHONY: test test: $(GO) clean -testcache - $(GO) test ./... -v + $(GO) test ./... -v -failfast .PHONY: test_specific test_specific: $(GO) clean -testcache - $(GO) test ./... -run ^$(TEST_NAME)$$ -v + $(GO) test ./... -run ^$(TEST_NAME)$$ -v -failfast .PHONY: test_foo test_foo: $(GO) clean -testcache - $(GO) test ./internal/ -v + $(GO) test ./internal/ -v -failfast .PHONY: bench bench: -- cgit v1.2.3