summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-05-24 21:46:23 +0300
committerPaul Buetow <paul@buetow.org>2025-05-24 21:46:23 +0300
commitb38238ed9daa72c3537d55928539eaef8c288096 (patch)
treecf1fba8393393093437ef3f57e787bb2f654ca94 /Makefile
parent70d554fb641fbd2b09833316c66468f99e3f41ba (diff)
update example
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 2 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index b4956ca..7d65af7 100644
--- a/Makefile
+++ b/Makefile
@@ -58,16 +58,11 @@ test:
$(GO) clean -testcache
$(GO) test ./... -v -failfast
-.PHONY: test_specific
-test_specific:
+.PHONY: test_with_name
+test_with_name:
$(GO) clean -testcache
$(GO) test ./... -run ^$(TEST_NAME)$$ -v -failfast
-.PHONY: test_foo
-test_foo:
- $(GO) clean -testcache
- $(GO) test ./internal/ -v -failfast
-
.PHONY: bench
bench:
$(GO) test ./... -v -bench=. -run xxx