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
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: