From 7340842e5bcd7a8a3d6f86024ac0658147da52a7 Mon Sep 17 00:00:00 2001 From: Deadpool2000 Date: Thu, 16 Apr 2026 22:53:04 +0530 Subject: [PATCH] test: filter upstream DeprecationWarning and UserWarning messages --- tests/pytest.ini | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/pytest.ini b/tests/pytest.ini index 5dcc095c..fea8f228 100644 --- a/tests/pytest.ini +++ b/tests/pytest.ini @@ -16,4 +16,10 @@ markers = unit: marks tests as unit tests contract: marks tests as contract tests (service interface validation) vertexai: marks tests as vertex ai specific tests - asyncio: marks tests that use asyncio \ No newline at end of file + asyncio: marks tests that use asyncio +filterwarnings = + ignore:Core Pydantic V1 functionality isn't compatible with Python 3.14.*:UserWarning + ignore:builtin type SwigPyPacked has no __module__ attribute:DeprecationWarning + ignore:builtin type SwigPyObject has no __module__ attribute:DeprecationWarning + ignore:builtin type swigvarlink has no __module__ attribute:DeprecationWarning + ignore:.*_UnionGenericAlias.*is deprecated and slated for removal in Python 3.17:DeprecationWarning \ No newline at end of file