Skip to content

Commit eec65c6

Browse files
committed
Remove needs_py39 marker
1 parent 03e7be2 commit eec65c6

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

tests/conftest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ def print_mock_fixture() -> Generator[PrintMock, None, None]:
8989
needs_pydanticv2 = pytest.mark.skipif(not IS_PYDANTIC_V2, reason="requires Pydantic v2")
9090
needs_pydanticv1 = pytest.mark.skipif(IS_PYDANTIC_V2, reason="requires Pydantic v1")
9191

92-
needs_py39 = pytest.mark.skipif(sys.version_info < (3, 9), reason="requires python3.9+")
9392
needs_py310 = pytest.mark.skipif(
9493
sys.version_info < (3, 10), reason="requires python3.10+"
9594
)

tests/test_select_gen.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,9 @@
33
import sys
44
from pathlib import Path
55

6-
from .conftest import needs_py39
7-
86
root_path = Path(__file__).parent.parent
97

108

11-
@needs_py39
129
def test_select_gen() -> None:
1310
env = os.environ.copy()
1411
env["CHECK_JINJA"] = "1"

0 commit comments

Comments
 (0)