Skip to content

Commit 60a2c74

Browse files
Apply temporary fix for PyPy release step (#609)
1 parent 8f82962 commit 60a2c74

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/test_openapi_v3.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import platform
12
from dataclasses import dataclass
23
from datetime import date, datetime
34
from enum import IntEnum
@@ -2218,6 +2219,10 @@ def home() -> PydResponse[PydCat]: ...
22182219
assert yaml.strip() == expected_result
22192220

22202221

2222+
@pytest.mark.skipif(
2223+
platform.python_implementation() == "PyPy",
2224+
reason="Temporary skip for PyPy, to publish 2.4.3",
2225+
)
22212226
async def test_pydantic_constrained_types(docs: OpenAPIHandler, serializer: Serializer):
22222227
app = get_app()
22232228

0 commit comments

Comments
 (0)