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
Asynchronous fixtures are currently synchronized as part of the pytest_pycollect_makeitem hook. This forces pytest-asyncio to provide a separate code path for fixtures. That involves different synchronization wrappers for coroutines and async generators as well as custom code for fixture rebinding.
To simplify the future maintenance of pytest-asyncio, fixtures should be synchronized dynamically when a test requests them.
The text was updated successfully, but these errors were encountered:
Asynchronous fixtures are currently synchronized as part of the pytest_pycollect_makeitem hook. This forces pytest-asyncio to provide a separate code path for fixtures. That involves different synchronization wrappers for coroutines and async generators as well as custom code for fixture rebinding.
To simplify the future maintenance of pytest-asyncio, fixtures should be synchronized dynamically when a test requests them.
The text was updated successfully, but these errors were encountered: