Browse Source
* 👷 Test and install Pydantic v1 and v2 in CI * 💚 Tweak CI config for Pydantic v1 and v2 * 💚 Fix Pydantic v2 specification in CI * 🐛 Fix type annotations for compatibility with Python 3.7 * 💚 Install Pydantic v2 for lints * 🐛 Fix type annotations for Pydantic v2 * 💚 Re-use test cache for lintpull/9707/head
committed by
GitHub
4 changed files with 25 additions and 12 deletions
@ -1,3 +1,5 @@ |
|||
from typing import List |
|||
|
|||
from fastapi import FastAPI |
|||
from fastapi.testclient import TestClient |
|||
from pydantic import BaseModel |
|||
@ -42,7 +44,7 @@ async def read_pet(pet_id: int): |
|||
return pet |
|||
|
|||
|
|||
@app.get("/pets/", response_model=list[PetOut]) |
|||
@app.get("/pets/", response_model=List[PetOut]) |
|||
async def read_pets(): |
|||
user = UserDB( |
|||
email="[email protected]", |
|||
|
@ -1,3 +1,5 @@ |
|||
from typing import List |
|||
|
|||
from fastapi import FastAPI |
|||
from fastapi.testclient import TestClient |
|||
from pydantic import BaseModel |
|||
@ -44,7 +46,7 @@ async def read_pet(pet_id: int): |
|||
return pet |
|||
|
|||
|
|||
@app.get("/pets/", response_model=list[PetOut]) |
|||
@app.get("/pets/", response_model=List[PetOut]) |
|||
async def read_pets(): |
|||
user = UserDB( |
|||
email="[email protected]", |
|||
|
Loading…
Reference in new issue