forked from langchain-ai/langchain
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(WIP) set up experimental (langchain-ai#7959)
- Loading branch information
Showing
1,540 changed files
with
2,399 additions
and
2,180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: libs/langchain CI | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
paths: | ||
- '.github/workflows/_lint.yml' | ||
- '.github/workflows/_test.yml' | ||
- '.github/workflows/langchain_ci.yml' | ||
- 'libs/langchain/**' | ||
workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI | ||
|
||
jobs: | ||
lint: | ||
uses: | ||
./.github/workflows/_lint.yml | ||
with: | ||
working-directory: libs/langchain | ||
secrets: inherit | ||
test: | ||
uses: | ||
./.github/workflows/_test.yml | ||
with: | ||
working-directory: libs/langchain | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
name: libs/langchain Release | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
branches: | ||
- master | ||
paths: | ||
- 'libs/langchain/pyproject.toml' | ||
|
||
jobs: | ||
release: | ||
uses: | ||
./.github/workflows/_release.yml | ||
with: | ||
working-directory: libs/langchain | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
.PHONY: all clean docs_build docs_clean docs_linkcheck api_docs_build api_docs_clean api_docs_linkcheck 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 | ||
|
||
###################### | ||
# TESTING AND COVERAGE | ||
###################### | ||
|
||
# Run unit tests and generate a coverage report. | ||
coverage: | ||
poetry run pytest --cov \ | ||
--cov-config=.coveragerc \ | ||
--cov-report xml \ | ||
--cov-report term-missing:skip-covered | ||
|
||
###################### | ||
# DOCUMENTATION | ||
###################### | ||
|
||
clean: docs_clean api_docs_clean | ||
|
||
|
||
docs_build: | ||
docs/.local_build.sh | ||
|
||
docs_clean: | ||
rm -r docs/_dist | ||
|
||
docs_linkcheck: | ||
poetry run linkchecker docs/_dist/docs_skeleton/ --ignore-url node_modules | ||
|
||
api_docs_build: | ||
poetry run python docs/api_reference/create_api_rst.py | ||
cd docs/api_reference && poetry run make html | ||
|
||
api_docs_clean: | ||
rm -f docs/api_reference/api_reference.rst | ||
cd docs/api_reference && poetry run make clean | ||
|
||
api_docs_linkcheck: | ||
poetry run linkchecker docs/api_reference/_build/html/index.html | ||
|
||
# Define a variable for the test file path. | ||
TEST_FILE ?= tests/unit_tests/ | ||
|
||
test: | ||
poetry run pytest --disable-socket --allow-unix-socket $(TEST_FILE) | ||
|
||
tests: | ||
poetry run pytest --disable-socket --allow-unix-socket $(TEST_FILE) | ||
|
||
extended_tests: | ||
poetry run pytest --disable-socket --allow-unix-socket --only-extended tests/unit_tests | ||
|
||
test_watch: | ||
poetry run ptw --now . -- tests/unit_tests | ||
|
||
integration_tests: | ||
poetry run pytest tests/integration_tests | ||
|
||
docker_tests: | ||
docker build -t my-langchain-image:test . | ||
docker run --rm my-langchain-image:test | ||
|
||
###################### | ||
# LINTING AND FORMATTING | ||
###################### | ||
|
||
# Define a variable for Python and notebook files. | ||
PYTHON_FILES=. | ||
lint format: PYTHON_FILES=. | ||
lint_diff format_diff: PYTHON_FILES=$(shell git diff --name-only --diff-filter=d master | grep -E '\.py$$|\.ipynb$$') | ||
|
||
lint lint_diff: | ||
poetry run mypy $(PYTHON_FILES) | ||
poetry run black $(PYTHON_FILES) --check | ||
poetry run ruff . | ||
|
||
format format_diff: | ||
poetry run black $(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 '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 'tests - run unit tests' | ||
@echo 'test TEST_FILE=<test_file> - run all tests in file' | ||
@echo 'extended_tests - run only extended unit tests' | ||
@echo 'test_watch - run unit tests in watch mode' | ||
@echo 'integration_tests - run integration tests' | ||
@echo 'docker_tests - run unit tests in docker' |
Oops, something went wrong.