From d15b0f6946ab5d24df6f240ec19db46d62a6bd90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Fri, 26 Dec 2025 11:01:51 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=87=20Add=20warning=20ignore=20for=20S?= =?UTF-8?q?trawberry?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_tutorial/test_graphql/test_tutorial001.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tests/test_tutorial/test_graphql/test_tutorial001.py b/tests/test_tutorial/test_graphql/test_tutorial001.py index ca035b340..9ba7147b5 100644 --- a/tests/test_tutorial/test_graphql/test_tutorial001.py +++ b/tests/test_tutorial/test_graphql/test_tutorial001.py @@ -1,7 +1,15 @@ +import warnings + import pytest from starlette.testclient import TestClient -from docs_src.graphql_.tutorial001_py39 import app +warnings.filterwarnings( + "ignore", + message=r"The 'lia' package has been renamed to 'cross_web'\..*", + category=DeprecationWarning, +) + +from docs_src.graphql_.tutorial001_py39 import app # noqa: E402 @pytest.fixture(name="client")