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
How to run all tests in a module in the same event loop
All tests can be run inside the same event loop by marking them with pytest.mark.asyncio(loop_scope="module").
This is easily achieved by adding a pytestmark statement to your module.