From 6af6fd97d3b793440fe0fb23bd259e8c046b069d Mon Sep 17 00:00:00 2001 From: David Vogt Date: Tue, 30 Jan 2024 14:55:28 +0100 Subject: [PATCH] chore: ignore cgi deprecation warning --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 93d2d223e..bae24f7f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -101,6 +101,7 @@ filterwarnings = [ "error::DeprecationWarning", "error::PendingDeprecationWarning", "ignore:The 'arrayconnection' module is deprecated:DeprecationWarning", # deprecation in graphene + "ignore:'cgi' is deprecated:DeprecationWarning", "ignore:distutils Version classes are deprecated:DeprecationWarning", # deprecation in pytest-freezegun "ignore:'django_extensions' defines default_app_config:PendingDeprecationWarning", # deprecation in django_extensions "ignore::requests.packages.urllib3.exceptions.InsecureRequestWarning", # MinIO tests do "insecure" requests - that's ok