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 @@ -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
You can’t perform that action at this time.
0 commit comments