lint pipe fixes
All checks were successful
ci/woodpecker/push/tests Pipeline was successful
ci/woodpecker/push/lints Pipeline was successful

This commit is contained in:
2026-04-19 23:16:09 +03:00
parent fd5e6a5dcb
commit af17b5b3bf
9 changed files with 53 additions and 1 deletions

View File

@@ -17,8 +17,10 @@ dev = [
"pre-commit>=4.5.1",
]
tests = [
"httpx>=0.28.1",
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.1.0",
]
lints = [
"black>=23.7.0",
@@ -28,3 +30,12 @@ lints = [
types = [
"mypy>=1.20.1",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
addopts = "--cov=src --cov-report=term"
pythonpath = "."
testpaths = "tests"
xfail_strict = true