]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Bump the requirement in dnstap test to dnspython 2.0.0
authorOndřej Surý <ondrej@isc.org>
Tue, 4 Apr 2023 15:21:07 +0000 (17:21 +0200)
committerOndřej Surý <ondrej@isc.org>
Tue, 4 Apr 2023 16:44:19 +0000 (16:44 +0000)
The dnspython.Resolve.resolve() requires at least dnspython >= 2.0.0,
this wasn't enforced in the dnstap system test.

bin/tests/system/dnstap/tests_dnstap.py

index e27ad9d373e2126899809e81e9cda0a446c19f1f..ca687b0fc25210486c654c9d4705094256f3ee44 100644 (file)
@@ -17,7 +17,7 @@ import subprocess
 
 import pytest
 
-pytest.importorskip("dns")
+pytest.importorskip("dns", minversion="2.0.0")
 import dns.resolver