update help

This commit is contained in:
Mason Daugherty 2025-07-28 10:00:20 -04:00
parent 77ec77edcd
commit 80a0d494a1
No known key found for this signature in database

View File

@ -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=<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'