From e123b76b0e542bdf1c8506ee9fa05958b61bd1d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ondr=CC=8Cej=20Sury=CC=81?= Date: Tue, 4 Apr 2023 17:21:07 +0200 Subject: [PATCH] Bump the requirement in dnstap test to dnspython 2.0.0 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/dnstap/tests_dnstap.py b/bin/tests/system/dnstap/tests_dnstap.py index e27ad9d373..ca687b0fc2 100644 --- a/bin/tests/system/dnstap/tests_dnstap.py +++ b/bin/tests/system/dnstap/tests_dnstap.py @@ -17,7 +17,7 @@ import subprocess import pytest -pytest.importorskip("dns") +pytest.importorskip("dns", minversion="2.0.0") import dns.resolver