Files
Lamont/pyproject.toml
Chelsea Lee fbdf33e894
Some checks failed
CI / test (push) Has been cancelled
CI / compose-smoke (push) Has been cancelled
Build reusable bot framework
2026-07-19 21:53:24 -05:00

28 lines
625 B
TOML

[tool.pytest.ini_options]
addopts = "-ra --strict-markers --cov --cov-report=term-missing"
asyncio_mode = "auto"
pythonpath = ["."]
testpaths = ["tests"]
[tool.coverage.run]
branch = true
relative_files = true
source = ["ai", "api", "bot", "core", "modules", "scheduler"]
omit = [
"core/manage.py",
"core/migrations/__main__.py",
]
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.ruff]
target-version = "py311"
line-length = 88
extend-exclude = [".venv"]
[tool.ruff.lint]
# Keep linting focused on syntax errors, undefined names, and invalid control flow.
select = ["E9", "F63", "F7", "F82"]