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:
Michal Nowak 2026-05-24 18:29:55 +00:00
parent ce9d047a5c
commit c41f63c82d
2 changed files with 0 additions and 8 deletions

View file

@ -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",

View file

@ -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",