community: remove integration test deps (#24460)

they arent used
This commit is contained in:
Erick Friis 2024-08-23 16:25:17 -07:00 committed by GitHub
parent 0022ae1b31
commit f6491ceb7d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 813 additions and 2147 deletions

File diff suppressed because it is too large Load Diff

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]
@ -12,12 +12,15 @@ readme = "README.md"
repository = "https://github.com/langchain-ai/langchain"
[tool.ruff]
exclude = [ "tests/examples/non-utf8-encoding.py", "tests/integration_tests/examples/non-utf8-encoding.py",]
exclude = [
"tests/examples/non-utf8-encoding.py",
"tests/integration_tests/examples/non-utf8-encoding.py",
]
[tool.mypy]
ignore_missing_imports = "True"
disallow_untyped_defs = "True"
exclude = [ "notebooks", "examples", "example_data",]
exclude = ["notebooks", "examples", "example_data"]
[tool.codespell]
skip = ".git,*.pdf,*.svg,*.pdf,*.yaml,*.ipynb,poetry.lock,*.min.js,*.css,package-lock.json,example_data,_dist,examples,*.trig"
@ -49,14 +52,18 @@ version = "^1.26.0"
python = ">=3.12"
[tool.ruff.lint]
select = [ "E", "F", "I", "T201",]
select = ["E", "F", "I", "T201"]
[tool.coverage.run]
omit = [ "tests/*",]
omit = ["tests/*"]
[tool.pytest.ini_options]
addopts = "--strict-markers --strict-config --durations=5 --snapshot-warn-unused -vv"
markers = [ "requires: mark tests as requiring a specific library", "scheduled: mark tests to run in scheduled testing", "compile: mark placeholder test used to compile integration tests without running them",]
markers = [
"requires: mark tests as requiring a specific library",
"scheduled: mark tests to run in scheduled testing",
"compile: mark placeholder test used to compile integration tests without running them",
]
asyncio_mode = "auto"
[tool.poetry.group.test]
@ -96,15 +103,6 @@ codespell = "^2.2.0"
[tool.poetry.group.test_integration.dependencies]
pytest-vcr = "^1.0.2"
vcrpy = "^6"
wrapt = "^1.15.0"
openai = "^1"
python-dotenv = "^1.0.0"
cassio = "^0.1.6"
tiktoken = ">=0.3.2,<0.6.0"
anthropic = "^0.3.11"
fireworks-ai = "^0.9.0"
vdms = ">=0.0.20"
exllamav2 = "^0.0.18"
[tool.poetry.group.lint.dependencies]
ruff = "^0.5"
@ -135,14 +133,6 @@ develop = true
path = "../standard-tests"
develop = true
[tool.poetry.group.test_integration.dependencies.langchain-core]
path = "../core"
develop = true
[tool.poetry.group.test_integration.dependencies.langchain]
path = "../langchain"
develop = true
[tool.poetry.group.dev.dependencies.langchain-core]
path = "../core"
develop = true