mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 15:22:38 -04:00
ignore deprecation and resource warnings in certbot-dns-rfc2136, which are inherited from dnspython
This commit is contained in:
parent
1eabb4bae3
commit
6f662fa489
1 changed files with 2 additions and 0 deletions
|
|
@ -7,6 +7,7 @@ import dns.flags
|
|||
import dns.rcode
|
||||
import dns.tsig
|
||||
import mock
|
||||
import pytest
|
||||
|
||||
from certbot import errors
|
||||
from certbot.plugins import dns_test_common
|
||||
|
|
@ -70,6 +71,7 @@ class AuthenticatorTest(test_util.TempDirTestCase, dns_test_common.BaseAuthentic
|
|||
self.auth.perform([self.achall])
|
||||
|
||||
|
||||
@pytest.mark.filterwarnings("ignore::ResourceWarning", "ignore:decodestring:DeprecationWarning")
|
||||
class RFC2136ClientTest(unittest.TestCase):
|
||||
|
||||
def setUp(self):
|
||||
|
|
|
|||
Loading…
Reference in a new issue