From: Ondřej Surý Date: Tue, 4 Apr 2023 19:31:58 +0000 (+0200) Subject: Bump the requirement in the shutdown test to dnspython 2.0.0 X-Git-Tag: v9.19.12~15^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=54a3f09c8f0bd88b705d0dcc89f84ce3ed25133c;p=thirdparty%2Fbind9.git Bump the requirement in the shutdown test to dnspython 2.0.0 The dnspython.Resolve.resolve() requires at least dnspython >= 2.0.0, this wasn't enforced in the shutdown system test leading to infinite loop waiting for the server start due to failing resolve() call. --- diff --git a/bin/tests/system/shutdown/tests_shutdown.py b/bin/tests/system/shutdown/tests_shutdown.py index 9b47e46a3b8..d3aea399afb 100755 --- a/bin/tests/system/shutdown/tests_shutdown.py +++ b/bin/tests/system/shutdown/tests_shutdown.py @@ -21,7 +21,7 @@ import time import pytest -pytest.importorskip("dns") +pytest.importorskip("dns", minversion="2.0.0") import dns.exception import dns.resolver