Silence no-cov warnings

This commit is contained in:
Adrian Chaves 2026-07-31 14:57:28 +02:00
parent b8cb7d2d6e
commit daff5abef7
1 changed files with 2 additions and 0 deletions

View File

@ -381,6 +381,8 @@ filterwarnings = [
"ignore:Core Pydantic V1 functionality isn't compatible:UserWarning",
# pyftpdlib imports asynchat, removed in Python 3.12, on lower versions.
"ignore:The async(hat|ore) module is deprecated:DeprecationWarning",
# CI runs without coverage pass --no-cov, which pytest-cov reports.
"ignore::pytest_cov.CovDisabledWarning",
]
[tool.ruff.lint]