simonjharris

Results 5 comments of simonjharris

I am seeing the same error on an M2 air with 0.6.8. Is there any workaround for this?

I downgraded to 0.5.6 and it's working fine on there. M3 is using vz by default AFAIK so likely same issue @pgarrett-twc.

> > What fixed my issues was > > `brew uninstall colima lima qemu` > > `rm -rf ~/.colima ~/.lima` > > restarted macOS > > 'brew install --HEAD colima'...

Here's a unit test MWE: (This setup works with `flask-pydantic`) ``` import pytest from pydantic import BaseModel from flask_openapi3 import OpenAPI from functools import wraps app = OpenAPI(__name__) class ForbiddenError(Exception):...

Thanks for your reply, I see your point here. I did a bit more testing and noticed that if I remove the `@wraps()` within `intercept`, the test passes. I'm not...