langchain/Makefile

54 lines
1.3 KiB
Makefile
Raw Permalink Normal View History

.PHONY: all clean format lint test tests test_watch integration_tests help
2022-10-24 21:51:15 +00:00
all: help
coverage:
poetry run pytest --cov \
--cov-config=.coveragerc \
--cov-report xml \
--cov-report term-missing:skip-covered
clean: docs_clean
docs_build:
cd docs && poetry run make html
docs_clean:
cd docs && poetry run make clean
docs_linkcheck:
poetry run linkchecker docs/_build/html/index.html
2022-10-24 21:51:15 +00:00
format:
poetry run black .
2023-02-25 16:59:52 +00:00
poetry run ruff --select I --fix .
2022-10-24 21:51:15 +00:00
lint:
poetry run mypy .
poetry run black . --check
2023-02-25 16:59:52 +00:00
poetry run ruff .
2022-10-24 21:51:15 +00:00
test:
poetry run pytest tests/unit_tests
2022-10-24 21:51:15 +00:00
tests:
poetry run pytest tests/unit_tests
2022-10-24 21:51:15 +00:00
test_watch:
2022-12-28 22:13:08 +00:00
poetry run ptw --now . -- tests/unit_tests
2022-10-24 21:51:15 +00:00
integration_tests:
poetry run pytest tests/integration_tests
help:
@echo '----'
@echo 'coverage - run unit tests and generate coverage report'
@echo 'docs_build - build the documentation'
@echo 'docs_clean - clean the documentation build artifacts'
@echo 'docs_linkcheck - run linkchecker on the documentation'
@echo 'format - run code formatters'
@echo 'lint - run linters'
@echo 'test - run unit tests'
@echo 'test_watch - run unit tests in watch mode'
@echo 'integration_tests - run integration tests'