multiple: langchain-standard-tests -> langchain-tests (#28139)

This commit is contained in:
Erick Friis
2024-11-15 11:32:04 -08:00
committed by GitHub
parent 409c7946ac
commit 6d2004ee7d
31 changed files with 315 additions and 253 deletions

View File

@@ -1,4 +1,4 @@
# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand.
# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand.
[[package]]
name = "annotated-types"
@@ -309,7 +309,7 @@ files = [
[[package]]
name = "langchain-core"
version = "0.3.15"
version = "0.3.19"
description = "Building applications with LLMs through composability"
optional = false
python-versions = ">=3.9,<4.0"
@@ -333,8 +333,8 @@ type = "directory"
url = "../../core"
[[package]]
name = "langchain-standard-tests"
version = "0.1.1"
name = "langchain-tests"
version = "0.3.1"
description = "Standard tests for LangChain implementations"
optional = false
python-versions = ">=3.9,<4.0"
@@ -343,7 +343,7 @@ develop = true
[package.dependencies]
httpx = "^0.27.0"
langchain-core = "^0.3.0"
langchain-core = "^0.3.15"
pytest = ">=7,<9"
syrupy = "^4"
@@ -983,4 +983,4 @@ watchmedo = ["PyYAML (>=3.10)"]
[metadata]
lock-version = "2.0"
python-versions = ">=3.9,<4.0"
content-hash = "ca6805780e6e50b39b5cf93779982517d384e6acb5445d75008b5fc4f469a9fc"
content-hash = "a5c369fbd4c7e6fea27200bec1537de641ac19b5ede12eaefec73d3461a440c7"

View File

@@ -37,7 +37,7 @@ select = [
convention = "google"
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["D"] # ignore docstring checks for tests
"tests/**" = ["D"] # ignore docstring checks for tests
[tool.coverage.run]
omit = ["tests/*"]
@@ -45,7 +45,7 @@ omit = ["tests/*"]
[tool.pytest.ini_options]
addopts = "--snapshot-warn-unused --strict-markers --strict-config --durations=5"
markers = [
"compile: mark placeholder test used to compile integration tests without running them",
"compile: mark placeholder test used to compile integration tests without running them",
]
asyncio_mode = "auto"
@@ -86,7 +86,7 @@ mypy = "^1.7.1"
path = "../../core"
develop = true
[tool.poetry.group.test.dependencies.langchain-standard-tests]
[tool.poetry.group.test.dependencies.langchain-tests]
path = "../../standard-tests"
develop = true