File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments