You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to get a list of missed responses for my app?
I don't want to automatically add responses. I want to just to see the list of missed ones
@app.get("/{item_id}")
def get_item(item_id: str):
if not item_exist(item_id):
raise HTTPException(404, "Item not found")
return 42
Output:
Missing responses:
@app.get("/{item_id}")
- 404, Item not found
The text was updated successfully, but these errors were encountered:
Is it possible to get a list of missed responses for my app?
I don't want to automatically add responses. I want to just to see the list of missed ones
Output:
The text was updated successfully, but these errors were encountered: