From b28e4adbf061b113fa857fe4d8cfee808b8f0b7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Tue, 27 May 2025 13:08:41 -0700 Subject: [PATCH] CI: adding deprecation filterwarning for pytest-asyncio --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index 4d95b5b..b15c6c6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -58,6 +58,9 @@ filterwarnings = error ignore:file format.*:UserWarning ignore:.*non-empty pattern match.*:FutureWarning + # For pytest-asyncio deprecations that is expected to be resolved upstream + # https://github.com/pytest-dev/pytest-asyncio/issues/924 + ignore:The configuration option "asyncio_default_fixture_loop_scope":pytest.PytestDeprecationWarning [flake8] max-line-length = 100