2023-11-20 21:09:30 +00:00
|
|
|
.PHONY: all format lint test tests test_watch integration_tests docker_tests help extended_tests
|
|
|
|
|
|
|
|
# Default target executed when no arguments are given to make.
|
|
|
|
all: help
|
|
|
|
|
|
|
|
# Define a variable for the test file path.
|
|
|
|
TEST_FILE ?= tests/unit_tests/
|
|
|
|
|
|
|
|
test:
|
|
|
|
poetry run pytest $(TEST_FILE)
|
|
|
|
|
|
|
|
tests:
|
|
|
|
poetry run pytest $(TEST_FILE)
|
|
|
|
|
|
|
|
test_watch:
|
2023-11-27 15:25:17 +00:00
|
|
|
poetry run ptw --snapshot-update --now . -- -vv -x tests/unit_tests
|
2023-11-20 21:09:30 +00:00
|
|
|
|
Cache calls to create_model for get_input_schema and get_output_schema (#17755)
Thank you for contributing to LangChain!
- [ ] **PR title**: "package: description"
- Where "package" is whichever of langchain, community, core,
experimental, etc. is being modified. Use "docs: ..." for purely docs
changes, "templates: ..." for template changes, "infra: ..." for CI
changes.
- Example: "community: add foobar LLM"
- [ ] **PR message**: ***Delete this entire checklist*** and replace
with
- **Description:** a description of the change
- **Issue:** the issue # it fixes, if applicable
- **Dependencies:** any dependencies required for this change
- **Twitter handle:** if your PR gets announced, and you'd like a
mention, we'll gladly shout you out!
- [ ] **Add tests and docs**: If you're adding a new integration, please
include
1. a test for the integration, preferably unit tests that do not rely on
network access,
2. an example notebook showing its use. It lives in
`docs/docs/integrations` directory.
- [ ] **Lint and test**: Run `make format`, `make lint` and `make test`
from the root of the package(s) you've modified. See contribution
guidelines for more: https://python.langchain.com/docs/contributing/
Additional guidelines:
- Make sure optional dependencies are imported within a function.
- Please do not add dependencies to pyproject.toml files (even optional
ones) unless they are required for unit tests.
- Most PRs should not touch more than one package.
- Changes should be backwards compatible.
- If you are adding something to community, do not re-import it in
langchain.
If no one reviews your PR within a few days, please @-mention one of
baskaryan, efriis, eyurtsev, hwchase17.
2024-02-19 21:26:42 +00:00
|
|
|
test_profile:
|
|
|
|
poetry run pytest -vv tests/unit_tests/ --profile-svg
|
|
|
|
|
2023-12-11 22:59:10 +00:00
|
|
|
check_imports: $(shell find langchain_core -name '*.py')
|
2023-12-11 23:19:21 +00:00
|
|
|
poetry run python ./scripts/check_imports.py $^
|
2023-12-11 21:53:30 +00:00
|
|
|
|
2023-12-07 22:24:58 +00:00
|
|
|
extended_tests:
|
|
|
|
poetry run pytest --only-extended $(TEST_FILE)
|
|
|
|
|
2023-11-20 21:09:30 +00:00
|
|
|
|
|
|
|
######################
|
|
|
|
# LINTING AND FORMATTING
|
|
|
|
######################
|
|
|
|
|
|
|
|
# Define a variable for Python and notebook files.
|
|
|
|
PYTHON_FILES=.
|
2023-12-11 21:53:30 +00:00
|
|
|
MYPY_CACHE=.mypy_cache
|
2023-11-20 21:09:30 +00:00
|
|
|
lint format: PYTHON_FILES=.
|
2023-12-11 21:53:30 +00:00
|
|
|
lint_diff format_diff: PYTHON_FILES=$(shell git diff --relative=libs/core --name-only --diff-filter=d master | grep -E '\.py$$|\.ipynb$$')
|
2023-12-07 22:24:58 +00:00
|
|
|
lint_package: PYTHON_FILES=langchain_core
|
|
|
|
lint_tests: PYTHON_FILES=tests
|
2023-12-11 21:53:30 +00:00
|
|
|
lint_tests: MYPY_CACHE=.mypy_cache_test
|
2023-11-20 21:09:30 +00:00
|
|
|
|
2023-12-07 22:24:58 +00:00
|
|
|
lint lint_diff lint_package lint_tests:
|
2023-11-22 01:42:56 +00:00
|
|
|
./scripts/check_pydantic.sh .
|
2023-12-08 19:28:55 +00:00
|
|
|
./scripts/lint_imports.sh
|
2023-11-20 21:09:30 +00:00
|
|
|
poetry run ruff .
|
|
|
|
[ "$(PYTHON_FILES)" = "" ] || poetry run ruff format $(PYTHON_FILES) --diff
|
2023-11-29 01:27:37 +00:00
|
|
|
[ "$(PYTHON_FILES)" = "" ] || poetry run ruff --select I $(PYTHON_FILES)
|
2023-11-20 21:09:30 +00:00
|
|
|
[ "$(PYTHON_FILES)" = "" ] || poetry run mypy $(PYTHON_FILES)
|
2024-02-05 19:22:06 +00:00
|
|
|
[ "$(PYTHON_FILES)" = "" ] || mkdir -p $(MYPY_CACHE) && poetry run mypy $(PYTHON_FILES) --cache-dir $(MYPY_CACHE)
|
2023-11-20 21:09:30 +00:00
|
|
|
|
|
|
|
format format_diff:
|
|
|
|
poetry run ruff format $(PYTHON_FILES)
|
|
|
|
poetry run ruff --select I --fix $(PYTHON_FILES)
|
|
|
|
|
|
|
|
spell_check:
|
|
|
|
poetry run codespell --toml pyproject.toml
|
|
|
|
|
|
|
|
spell_fix:
|
|
|
|
poetry run codespell --toml pyproject.toml -w
|
|
|
|
|
|
|
|
######################
|
|
|
|
# HELP
|
|
|
|
######################
|
|
|
|
|
|
|
|
help:
|
|
|
|
@echo '----'
|
|
|
|
@echo 'format - run code formatters'
|
|
|
|
@echo 'lint - run linters'
|
|
|
|
@echo 'test - run unit tests'
|
|
|
|
@echo 'tests - run unit tests'
|
|
|
|
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
|
|
|
@echo 'test_watch - run unit tests in watch mode'
|