diff --git a/libs/standard-tests/Makefile b/libs/standard-tests/Makefile index 4e1d8bae5d0..c50b6064f4f 100644 --- a/libs/standard-tests/Makefile +++ b/libs/standard-tests/Makefile @@ -56,9 +56,20 @@ check_imports: $(shell find langchain_tests -name '*.py') help: @echo '----' - @echo 'check_imports - check imports' - @echo 'format - run code formatters' - @echo 'lint - run linters' + @echo 'Available targets:' + @echo '----' @echo 'test - run unit tests' @echo 'tests - run unit tests' + @echo 'integration_test - run integration tests' + @echo 'integration_tests - run integration tests' @echo 'test TEST_FILE= - run all tests in file' + @echo 'lint - run linters' + @echo 'lint_diff - run linters on changed files' + @echo 'lint_package - run linters on package files' + @echo 'lint_tests - run linters on test files' + @echo 'format - run code formatters' + @echo 'format_diff - run formatters on changed files' + @echo 'spell_check - check spelling' + @echo 'spell_fix - fix spelling issues' + @echo 'check_imports - check imports' + @echo 'help - show this help message'