1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-26 07:41:33 +03:00

remove pytest.mark, move to specific ignore in pytest.ini

This commit is contained in:
Erica Portnoy
2018-11-05 17:41:26 -08:00
parent c3fa05ba74
commit 91b3c5d61c
2 changed files with 2 additions and 1 deletions

View File

@@ -70,7 +70,6 @@ class AuthenticatorTest(test_util.TempDirTestCase, dns_test_common.BaseAuthentic
self.auth.perform([self.achall])
@pytest.mark.filterwarnings("ignore:decodestring:DeprecationWarning")
class RFC2136ClientTest(unittest.TestCase):
def setUp(self):

View File

@@ -1,5 +1,7 @@
[pytest]
addopts = --numprocesses auto --pyargs
# ResourceWarnings are ignored as errors, since they're raised at close
# decodestring: https://github.com/rthalley/dnspython/issues/338
filterwarnings =
error
ignore:decodestring:DeprecationWarning