From daff5abef7374e2e737ff79a039ffa80d0abef30 Mon Sep 17 00:00:00 2001 From: Adrian Chaves Date: Fri, 31 Jul 2026 14:57:28 +0200 Subject: [PATCH] Silence no-cov warnings --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index cb7f96a23..736cfd3df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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]