├── .flake8 ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── ci.yaml │ └── publish.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── pyproject.toml ├── requirements.in ├── requirements.txt ├── setup.cfg ├── src └── pytest_langchain │ ├── __init__.py │ ├── __main__.py │ ├── plugin.py │ └── tests │ ├── conftest.py │ └── test_chain.py └── tests ├── __init__.py ├── test_cli.py └── test_data ├── config.yaml └── llm_chain.yaml /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | extend-ignore = E203, W503 4 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/pytest_langchain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/src/pytest_langchain/__init__.py -------------------------------------------------------------------------------- /src/pytest_langchain/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/src/pytest_langchain/__main__.py -------------------------------------------------------------------------------- /src/pytest_langchain/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/src/pytest_langchain/plugin.py -------------------------------------------------------------------------------- /src/pytest_langchain/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/src/pytest_langchain/tests/conftest.py -------------------------------------------------------------------------------- /src/pytest_langchain/tests/test_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/src/pytest_langchain/tests/test_chain.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_data/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/tests/test_data/config.yaml -------------------------------------------------------------------------------- /tests/test_data/llm_chain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajndkr/pytest-langchain/HEAD/tests/test_data/llm_chain.yaml --------------------------------------------------------------------------------