diff --git a/pytest.ini b/pytest.ini index 654b368f2..49db7da09 100644 --- a/pytest.ini +++ b/pytest.ini @@ -8,8 +8,11 @@ # 3- ignore warn for importing abstract classes from collections instead of collections.abc, # too much third party dependencies are still relying on this behavior, # but it should be corrected to allow Certbot compatiblity with Python >= 3.8 +# 4- ipdb uses deprecated functionality of IPython. See +# https://github.com/gotcha/ipdb/issues/144. filterwarnings = error ignore:decodestring:DeprecationWarning ignore:TLS-SNI-01:DeprecationWarning ignore:.*collections\.abc:DeprecationWarning + ignore:The `color_scheme` argument is deprecated:DeprecationWarning:IPython.*