summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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