mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Skip checkds test on Python<3.7
checkds test requires the capture_output argument for subprocess.run()
which was added in Python 3.7.
(cherry picked from commit 0361233b3d)
This commit is contained in:
parent
c6fb15bdd6
commit
7a42a6b409
1 changed files with 5 additions and 0 deletions
|
|
@ -30,6 +30,11 @@ import dns.rdatatype
|
|||
import dns.resolver
|
||||
|
||||
|
||||
pytestmark = pytest.mark.skipif(
|
||||
sys.version_info < (3, 7), reason="Python >= 3.7 required [GL #3001]"
|
||||
)
|
||||
|
||||
|
||||
def has_signed_apex_nsec(zone, response):
|
||||
has_nsec = False
|
||||
has_rrsig = False
|
||||
|
|
|
|||
Loading…
Reference in a new issue