certbot/pytest.ini

19 lines
905 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]
# Warnings being triggered by our plugins using deprecated features in
# acme/certbot should be fixed by having our plugins no longer using the
# deprecated code rather than adding them to the list of ignored warnings here.
# Fixing things in this way prevents us from shipping packages raising our own
# deprecation warnings and gives time for plugins that don't use the deprecated
# API to propagate, especially for plugins packaged as an external snap, before
# we release breaking changes.
2021-04-07 14:51:43 -04:00
#
# The current warnings being ignored are:
# 1) The warning raised when importing certbot.tests.util and the external mock
# library is installed.
2018-10-30 20:13:40 -04:00
filterwarnings =
2018-10-30 20:24:29 -04:00
error
2021-04-07 14:51:43 -04:00
ignore:The external mock module:PendingDeprecationWarning