Files
adguard-control-hub/pyproject.toml
Rafal Zielinski 554b8ac16b
Some checks failed
Integration Testing / Integration Tests (2024.12.0, 3.11) (push) Failing after 27s
Integration Testing / Integration Tests (2024.12.0, 3.12) (push) Failing after 56s
Integration Testing / Integration Tests (2024.12.0, 3.13) (push) Failing after 1m38s
Integration Testing / Integration Tests (2025.9.4, 3.11) (push) Failing after 19s
Integration Testing / Integration Tests (2025.9.4, 3.12) (push) Failing after 20s
Integration Testing / Integration Tests (2025.9.4, 3.13) (push) Failing after 25s
Code Quality Check / Code Quality Analysis (push) Failing after 20s
Code Quality Check / Security Analysis (push) Failing after 21s
refactor: another refactor
Signed-off-by: Rafal Zielinski <sq4ind@gmail.com>
2025-09-28 17:01:21 +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=80",
"--asyncio-mode=auto",
"-v"
]