Skip to content

Commit 348bb68

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

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
@@ -68,15 +68,15 @@ format: ## Format Go source files
6868
@gofmt -l -w $(SRC)
6969

7070
.PHONY: test
71-
test: test-unit test-e2e
71+
test: test-unit test-e2e ## Run unit tests and e2e tests
7272

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

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

0 commit comments

Comments
 (0)