From 356baee37d627c86355e5c9e7a1694c35ae7054a Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Sat, 3 Jan 2026 22:10:43 -0600 Subject: [PATCH] chore(pytest.ini): add filterwarnings to suppress specific warnings during test execution --- pytest.ini | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pytest.ini b/pytest.ini index 5d899d4..f18633a 100644 --- a/pytest.ini +++ b/pytest.ini @@ -4,4 +4,10 @@ python_files = test_*.py python_functions = test_* asyncio_mode = auto asyncio_default_fixture_loop_scope = function +filterwarnings = + ignore::ResourceWarning + ignore::pytest.PytestUnhandledThreadExceptionWarning + ignore:Duplicate name:UserWarning:zipfile + ignore:coroutine 'AsyncMockMixin._execute_mock_call' was never awaited:RuntimeWarning + ignore:coroutine 'sleep' was never awaited:RuntimeWarning