From 5769d1588fc14e48ad312dc89afaf1214d26eedf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20K=C3=B6tter?= Date: Thu, 29 Aug 2024 06:53:42 +0200 Subject: [PATCH] tests - skip 3.8 --- tests/schema_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/schema_test.py b/tests/schema_test.py index 6e53b400..3dfdf438 100644 --- a/tests/schema_test.py +++ b/tests/schema_test.py @@ -104,6 +104,7 @@ def test_schema_string_pattern(with_schema_string_pattern): GUID.model_validate(str(uuid.uuid4()).replace("-", "@")) +@pytest.mark.skipif(sys.version_info <= (3, 8)) def test_schema_regex_engine(with_schema_regex_engine): api = OpenAPI("/", with_schema_regex_engine) Root = api.components.schemas["Root"].get_type()