All tests can be run inside the same event loop by marking them with pytest.mark.asyncio(loop_scope="session")
.
The easiest way to mark all tests is via a pytest_collection_modifyitems
hook in the conftest.py
at the root folder of your test suite.
Note that this will also override all manually applied marks in strict mode.