We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f82962 commit 60a2c74Copy full SHA for 60a2c74
tests/test_openapi_v3.py
@@ -1,3 +1,4 @@
1
+import platform
2
from dataclasses import dataclass
3
from datetime import date, datetime
4
from enum import IntEnum
@@ -2218,6 +2219,10 @@ def home() -> PydResponse[PydCat]: ...
2218
2219
assert yaml.strip() == expected_result
2220
2221
2222
+@pytest.mark.skipif(
2223
+ platform.python_implementation() == "PyPy",
2224
+ reason="Temporary skip for PyPy, to publish 2.4.3",
2225
+)
2226
async def test_pydantic_constrained_types(docs: OpenAPIHandler, serializer: Serializer):
2227
app = get_app()
2228
0 commit comments