From 6948b4042d8c427c8f9d7592d0700e7b929fa1ca Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Fri, 15 Nov 2024 11:00:22 -0800 Subject: [PATCH] langchain-standard-tests -> langchain-tests --- pyproject.toml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 20d20280..bc4a1406 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,8 +34,8 @@ pytest-asyncio = "^0.23.2" pytest-socket = "^0.7.0" pytest-cov = "^5.0.0" pytest-timeout = "^2.3.1" -langchain-core = {git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/core/"} -langchain-standard-tests = {git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/standard-tests/"} +langchain-core = { git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/core/" } +langchain-tests = { git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/standard-tests/" } [tool.poetry.group.codespell] optional = true @@ -54,9 +54,9 @@ mypy = "^1.7.1" [tool.ruff.lint] select = [ - "E", # pycodestyle - "F", # pyflakes - "I", # isort + "E", # pycodestyle + "F", # pyflakes + "I", # isort "T201", # print ] @@ -64,9 +64,7 @@ select = [ disallow_untyped_defs = "True" [tool.coverage.run] -omit = [ - "tests/*", -] +omit = ["tests/*"] [build-system] requires = ["poetry-core>=1.0.0"]