From 57823cd1f78e2daeb744c748495651dbcb51d59c Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Wed, 16 Jun 2021 12:09:04 -0400 Subject: [PATCH] fix zope import warning --- pytest.ini | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pytest.ini b/pytest.ini index 94122db30..1eebe5b65 100644 --- a/pytest.ini +++ b/pytest.ini @@ -13,6 +13,10 @@ # The current warnings being ignored are: # 1) The warning raised when importing certbot.tests.util and the external mock # library is installed. +# 2) An ImportWarning is raised with older versions of setuptools and +# zope.interface. See +# https://github.com/zopefoundation/zope.interface/issues/68 for more info. filterwarnings = error ignore:The external mock module:PendingDeprecationWarning + ignore:.*zope. missing __init__:ImportWarning