Daniel Obiorah
Daniel Obiorah
@pgjones any updates on ordering the schema routes?
I see what the problem is. When using a validation decorator like @validate_request or @validate_querystring, quart-schema returns specific arguments to your route function, (data for validate_request and query_args for validate_querysting)....
Working fine so far. Thanks.
Personally, i find that defining app.errorhandler work fine here, whether you are using a blueprint setup or just a single app. Here's sample code i use. ``` # imports from...
Set TESTING =True in the app config. That's what works currently, there's an open pr fix for this