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

@@ -493,7 +493,7 @@ files = [
[[package]]
name = "langchain-core"
version = "0.3.17"
version = "0.3.19"
description = "Building applications with LLMs through composability"
optional = false
python-versions = ">=3.9,<4.0"
@@ -517,8 +517,8 @@ type = "directory"
url = "../../core"
[[package]]
name = "langchain-standard-tests"
version = "0.3.0"
name = "langchain-tests"
version = "0.3.1"
description = "Standard tests for LangChain implementations"
optional = false
python-versions = ">=3.9,<4.0"
@@ -1562,4 +1562,4 @@ watchmedo = ["PyYAML (>=3.10)"]
[metadata]
lock-version = "2.0"
python-versions = ">=3.9,<4.0"
content-hash = "193b209048042991c70a06289c41e67d44cc104c970a70857beacc8a51f0459b"
content-hash = "79ff1e8bd2a97aefd574186299e51f9e2487ee51bcde1e199d6e786c3fdde8ea"

View File

@@ -1,5 +1,5 @@
[build-system]
requires = [ "poetry-core>=1.0.0",]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
@@ -28,20 +28,26 @@ openai = "^1.54.0"
tiktoken = ">=0.7,<1"
[tool.ruff.lint]
select = [ "E", "F", "I", "T201",]
select = ["E", "F", "I", "T201"]
[tool.ruff.format]
docstring-code-format = true
skip-magic-trailing-comma = true
[tool.coverage.run]
omit = [ "tests/*",]
omit = ["tests/*"]
[tool.pytest.ini_options]
addopts = "--snapshot-warn-unused --strict-markers --strict-config --durations=5 --cov=langchain_openai"
markers = [ "requires: mark tests as requiring a specific library", "compile: mark placeholder test used to compile integration tests without running them", "scheduled: mark tests to run in scheduled testing",]
markers = [
"requires: mark tests as requiring a specific library",
"compile: mark placeholder test used to compile integration tests without running them",
"scheduled: mark tests to run in scheduled testing",
]
asyncio_mode = "auto"
filterwarnings = [ "ignore::langchain_core._api.beta_decorator.LangChainBetaWarning",]
filterwarnings = [
"ignore::langchain_core._api.beta_decorator.LangChainBetaWarning",
]
[tool.poetry.group.test]
optional = true
@@ -100,7 +106,7 @@ types-tqdm = "^4.66.0.5"
path = "../../core"
develop = true
[tool.poetry.group.test.dependencies.langchain-standard-tests]
[tool.poetry.group.test.dependencies.langchain-tests]
path = "../../standard-tests"
develop = true