From 1f2dc4464b640eec727de3baff5ae48e899c6aea Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Tue, 1 Nov 2022 08:11:43 -0700 Subject: [PATCH] fixup warnings --- pytest.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pytest.ini b/pytest.ini index 22beaa54e..3b9c8870f 100644 --- a/pytest.ini +++ b/pytest.ini @@ -18,8 +18,11 @@ # https://github.com/boto/botocore/issues/2550. # 3) pytest-cov uses deprecated functionality in pytest-xdist, to be resolved by # https://github.com/pytest-dev/pytest-cov/issues/557. +# 4) botocore is currently using the cgi module which will be removed from +# Python in version 3.13. See https://github.com/boto/botocore/issues/2803. filterwarnings = error ignore:decodestring\(\) is a deprecated alias:DeprecationWarning:dns ignore:'urllib3.contrib.pyopenssl:DeprecationWarning:botocore ignore:.*rsyncdir:DeprecationWarning + ignore:'cgi' is deprecated:DeprecationWarning:botocore