certbot/pytest.ini

14 lines
691 B
INI
Raw Permalink Normal View History

# This file isn't used while testing packages in tools/_release.sh so any
# settings we want to also change there must be added to the release script
# directly.
2018-07-11 20:25:48 -04:00
[pytest]
# In general, all warnings are treated as errors. Here are the exceptions:
# 1- decodestring: https://github.com/rthalley/dnspython/issues/338
# 2- ignore warn for importing abstract classes from collections instead of collections.abc,
# too much third party dependencies are still relying on this behavior,
2020-01-17 12:55:51 -05:00
# but it should be corrected to allow Certbot compatibility with Python >= 3.8
2018-10-30 20:13:40 -04:00
filterwarnings =
2018-10-30 20:24:29 -04:00
error
ignore:decodestring:DeprecationWarning
ignore:.*collections\.abc:DeprecationWarning