From 54a3f09c8f0bd88b705d0dcc89f84ce3ed25133c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sur=C3=BD?= Date: Tue, 4 Apr 2023 21:31:58 +0200 Subject: [PATCH] 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. --- bin/tests/system/shutdown/tests_shutdown.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/shutdown/tests_shutdown.py b/bin/tests/system/shutdown/tests_shutdown.py index 9b47e46a3b..d3aea399af 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