-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question: how to set fixture and async function same loop? #983
Comments
solved, thx! |
How did you solve it? EDIT: For me it was adding this to [tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "session" And following the docs and adding this to That way all the tests run on the same loop as the fixtures (I have session-scoped db fixture that runs migrations, and a function scoped db fixture that wraps everything in a transaction; so I needed everything to run on the same loop). |
change @pytest_asyncio.fixture(scope="session")
async def setup_env():
import asyncio
loop1 = asyncio.get_running_loop()
print(f"setup_env {loop1} - {id(loop1)}")
yield to @pytest_asyncio.fixture(loop_scope="session")
async def setup_env():
import asyncio
loop1 = asyncio.get_running_loop()
print(f"setup_env {loop1} - {id(loop1)}")
yield this makes |
@scastlara, have you encountered any issues with this approach? I have a similar case:
I'm curious if the approach you mentioned is the best way to handle this, or if there might be a better alternative. |
Hey @nekeal ! No problems at all.
asyncio_default_fixture_loop_scope = "session"
def pytest_collection_modifyitems(items: Any) -> None:
"""
Make all tests run on the same event loop.
This is necessary because our db session is created on the event loop,
and we need to ensure all tests run on the same event loop as the db!
See: https://pytest-asyncio.readthedocs.io/en/latest/how-to-guides/run_session_tests_in_same_loop.html
"""
pytest_asyncio_tests = (item for item in items if is_async_test(item))
session_scope_marker = pytest.mark.asyncio(loop_scope="session")
for async_test in pytest_asyncio_tests:
async_test.add_marker(session_scope_marker, append=False)
@pytest.fixture(scope="session", autouse=True)
async def prepare_testsuite_db() -> AsyncIterator[None]:
"""Set up test database and engine."""
engine = create_async_engine(get_database_url())
async with engine.begin() as conn:
await conn.run_sync(Base.metadata.drop_all)
await conn.run_sync(Base.metadata.create_all)
await conn.commit()
yield
# Then the func scope db fixtures providing a transaction for each test The testsuite is just as fast as before, no errors at all. Only thing lacking is being able to configure the loop scope of tests in pyproject.toml instead of having to do tricks with pytest hooks. But I think there was an open issue about this and the lib maintainer is fully aware. For now this is sufficient for me. |
Thank you, @scastlara! I agree that the hook is not an ideal solution, but just to be thorough, I ran a small benchmark. For a test suite consisting of 1,100 synchronous and 820 asynchronous tests, it takes less than a millisecond. So that's a good enough solution 🎉 |
here is my code
test_something.py
and conftest.py
my question is how to make
loop1
==loop2
The text was updated successfully, but these errors were encountered: