From eec65c6e89077c165be1a4b22795fb89c4cccff0 Mon Sep 17 00:00:00 2001 From: Yurii Motov Date: Thu, 25 Dec 2025 11:51:05 +0100 Subject: [PATCH] Remove `needs_py39` marker --- tests/conftest.py | 1 - tests/test_select_gen.py | 3 --- 2 files changed, 4 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index c9b6f413..d8da629d 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -89,7 +89,6 @@ def print_mock_fixture() -> Generator[PrintMock, None, None]: needs_pydanticv2 = pytest.mark.skipif(not IS_PYDANTIC_V2, reason="requires Pydantic v2") needs_pydanticv1 = pytest.mark.skipif(IS_PYDANTIC_V2, reason="requires Pydantic v1") -needs_py39 = pytest.mark.skipif(sys.version_info < (3, 9), reason="requires python3.9+") needs_py310 = pytest.mark.skipif( sys.version_info < (3, 10), reason="requires python3.10+" ) diff --git a/tests/test_select_gen.py b/tests/test_select_gen.py index 664cebf2..94ed340e 100644 --- a/tests/test_select_gen.py +++ b/tests/test_select_gen.py @@ -3,12 +3,9 @@ import subprocess import sys from pathlib import Path -from .conftest import needs_py39 - root_path = Path(__file__).parent.parent -@needs_py39 def test_select_gen() -> None: env = os.environ.copy() env["CHECK_JINJA"] = "1" -- 2.47.3