Refactor dependency management in pyproject.toml and uv.lock to include testing libraries and update pytest configuration

This commit is contained in:
Anish Sarkar 2026-02-25 16:06:16 +05:30
parent d576e93f2a
commit b7447b26f9
2 changed files with 20 additions and 11 deletions

View file

@ -66,14 +66,14 @@ dependencies = [
"pypandoc_binary>=1.16.2",
"typst>=0.14.0",
"deepagents>=0.4.3",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"httpx>=0.28.1",
]
[dependency-groups]
dev = [
"ruff>=0.12.5",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"httpx>=0.28.1",
]
[tool.ruff]
@ -161,10 +161,17 @@ line-ending = "auto"
[tool.ruff.lint.isort]
# Group imports by type
known-first-party = ["app"]
known-first-party = ["app", "tests"]
force-single-line = false
combine-as-imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.setuptools.packages.find]
where = ["."]
include = ["app*", "alembic*"]