Fix unawaited coroutine test warnings

This commit is contained in:
Philip Henning 2026-09-04 21:47:35 +02:00
parent e268794564
commit 6ce1d7da2f
2 changed files with 75 additions and 46 deletions

View file

@ -28,3 +28,9 @@ build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/hosts"]
[tool.pytest.ini_options]
filterwarnings = [
"error:coroutine .* was never awaited:RuntimeWarning",
"error::pytest.PytestUnraisableExceptionWarning",
]