Files
adguard-control-hub/pyproject.toml
2025-10-02 12:46:59 +01:00

23 lines
420 B
TOML

[tool.black]
line-length = 127
target-version = ['py311', 'py312', 'py313']
[tool.isort]
profile = "black"
line_length = 127
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = [
"--cov=custom_components.adguard_hub",
"--cov-report=term-missing",
"--cov-report=html",
"--cov-fail-under=70",
"--asyncio-mode=auto",
"-v"
]