From f5ea5d453e6708eae429a8fc0f4768e73c53c971 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Wed, 8 Feb 2023 14:21:07 -0800 Subject: [PATCH] fix requests-toolbelt warning (#9569) --- pytest.ini | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pytest.ini b/pytest.ini index e498766ec..b0c4fe1dc 100644 --- a/pytest.ini +++ b/pytest.ini @@ -15,7 +15,12 @@ # certbot-dns-rfc2136. # 2) pytest-cov uses deprecated functionality in pytest-xdist, to be resolved by # https://github.com/pytest-dev/pytest-cov/issues/557. +# 3) requests-toolbelt<0.10.1 can cause this warning to be raised during our +# unit tests. This warning should be ignored until our (transitive) +# dependency on requests-toolbelt is removed or our pinned version can be +# updated. filterwarnings = error ignore:decodestring\(\) is a deprecated alias:DeprecationWarning:dns ignore:.*rsyncdir:DeprecationWarning + ignore:'urllib3.contrib.pyopenssl:DeprecationWarning:requests_toolbelt