Skip to content

Commit d701dd4

Browse files
committed
restore helper text
Signed-off-by: Maroon Ayoub <maroon.ayoub@ibm.com>
1 parent e7eb063 commit d701dd4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,15 @@ format: ## Format Go source files
8181
@gofmt -l -w $(SRC)
8282

8383
.PHONY: test
84-
test: test-unit test-e2e
84+
test: test-unit test-e2e ## Run unit tests and e2e tests
8585

8686
.PHONY: test-unit
87-
test-unit: download-tokenizer install-dependencies
87+
test-unit: download-tokenizer install-dependencies ## Run unit tests
8888
@printf "\033[33;1m==== Running Unit Tests ====\033[0m\n"
8989
go test -ldflags="$(LDFLAGS)" -v $$(echo $$(go list ./... | grep -v /test/))
9090

9191
.PHONY: test-integration
92-
test-integration: download-tokenizer install-dependencies
92+
test-integration: download-tokenizer install-dependencies ## Run integration tests
9393
@printf "\033[33;1m==== Running Integration Tests ====\033[0m\n"
9494
go test -ldflags="$(LDFLAGS)" -v -tags=integration_tests ./test/integration/
9595

0 commit comments

Comments
 (0)