From 51453a1b60d6520281cecc8c6bf63b76326e7028 Mon Sep 17 00:00:00 2001 From: Sean Hammond Date: Thu, 5 Oct 2023 11:21:40 +0100 Subject: [PATCH] Ignore pkg_resources warnings from gevent and pywb --- tox.ini | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 09cb5a89..d0306635 100644 --- a/tox.ini +++ b/tox.ini @@ -10,8 +10,9 @@ filterwarnings = ; pkg_resources is calling its own deprecated function? Anyway I don't think the problem is with us. ignore:^Deprecated call to .pkg_resources\.declare_namespace\('.*'\).\.:DeprecationWarning:pkg_resources ; pkg_resources used in some of our dependencies - ignore:^pkg_resources is deprecated as an API$:DeprecationWarning:pkg_resources - + ignore:^pkg_resources is deprecated as an API:DeprecationWarning:pkg_resources + ignore:^pkg_resources is deprecated as an API:DeprecationWarning:gevent + ignore:^pkg_resources is deprecated as an API:DeprecationWarning:pywb xfail_strict=true