summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-05-20 09:38:50 +0300
committerPaul Buetow <paul@buetow.org>2025-05-20 09:38:50 +0300
commit70d554fb641fbd2b09833316c66468f99e3f41ba (patch)
tree2768b5a235791d8009721000289b32a01bd4fd93 /Makefile
parentf27848b812aecd0bb0aecb100119c0ab71b5fbeb (diff)
fix unit tests
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
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: