mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 02:39:59 -04:00
Remove redundant Python 3.7 skip markers from system tests
The test framework already requires Python 3.10+ (conftest.py raises RuntimeError if version < 3.10), so skipif(sys.version_info < (3, 7)) can never trigger. Remove the dead markers and now-unused sys imports. Assisted-by: Claude:claude-opus-4-7
This commit is contained in:
parent
ce9d047a5c
commit
c41f63c82d
2 changed files with 0 additions and 8 deletions
|
|
@ -15,7 +15,6 @@
|
|||
from typing import NamedTuple
|
||||
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
|
||||
import dns.name
|
||||
|
|
@ -27,9 +26,6 @@ import pytest
|
|||
import isctest
|
||||
|
||||
pytestmark = [
|
||||
pytest.mark.skipif(
|
||||
sys.version_info < (3, 7), reason="Python >= 3.7 required [GL #3001]"
|
||||
),
|
||||
pytest.mark.extra_artifacts(
|
||||
[
|
||||
"*.out",
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@
|
|||
|
||||
import os
|
||||
import re
|
||||
import sys
|
||||
|
||||
import dns.query
|
||||
import dns.rcode
|
||||
|
|
@ -24,9 +23,6 @@ import pytest
|
|||
import isctest
|
||||
|
||||
pytestmark = [
|
||||
pytest.mark.skipif(
|
||||
sys.version_info < (3, 7), reason="Python >= 3.7 required [GL #3001]"
|
||||
),
|
||||
pytest.mark.extra_artifacts(
|
||||
[
|
||||
"*.out",
|
||||
|
|
|
|||
Loading…
Reference in a new issue