-
Notifications
You must be signed in to change notification settings - Fork 160
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
Unexpected attached to a different loop errors #402
Comments
Using a single, global event loop is less than ideal tbh, your unit tests won't be independent of each other (so, won't be unit tests). In your case here, I'd say make |
There has been a proposal to deprecate overrides of the event loop fixture in favour of pytest config options: #311 (comment) The proposal has been close in lieu of alternative solutions, namely aioloop-proxy. However, I'm a bit wary of integrating aioloop-proxy (see #312) when nobody except Andrew has access to the repository and the pypi packages. Maybe it's time to re-evaluate the deprecation of event loop fixture overrides? I'd be happy for any feedback. |
FWIW. I get the @pytest.fixture(scope='session')
def event_loop():
policy = asyncio.get_event_loop_policy()
loop = policy.new_event_loop()
yield loop
loop.close() with @pytest.fixture(scope='session')
def run_in_loop():
policy = asyncio.get_event_loop_policy()
loop = policy.new_event_loop()
yield loop.run_until_complete
loop.close() (Yep. This is only for replacing I don't know if this is an expected session-fixture behaviour that I don't understand or could be a bug. Happy to open a new issue if this is a bug but it's not related with this issue. |
@nuno-andre pytest-asyncio injects the fixture with the name If you want to have a session-wide event loop, do override the |
I've got the same errors and lots of them. It seems that pytest-asyncio somehow and somewhy starts new loops while previous ones are still active and SQLAlchemy 2.0+ goes nuts :( None of the suggested fixes have helped. It looks to be a collision between asyncio, greenlets and the way SQLAlchemy tries to interoperate between both. |
pytest-asyncio closes existing loops when initializing the event_loop fixture. As outlined in this comment, this behavior can make it difficult for the user to spot errors in their code or problems with dependencies trying to manage the event loop in parallel to pytest-asyncio. Most importantly, though, parts of the low-level asyncio API have been deprecated, so the "close existing loops" functionality in pytest-asyncio will also have to go. The upcoming release of pytest-asyncio will print a warning when the event_loop fixture goes out of scope and the loop is not properly closed. @naquad Maybe this helps debugging your issue. Other than that, feel free to provide a minimal reproducer. |
The OP experienced issues with changing event loops in their code. pytest-asyncio warns about event loops that are not properly cleaned up since v0.21. In addition to that, #620 introduces a way to have an event loop with larger scope, which reportedly solved the OP's issue. I'm closing this issue as resolved, since there's not much more to go on. |
We had a hard to debug issue when testing async sqlalchemy.
When running the following test
we would get two errors:
This is fixed by having a global event loop as suggested in #38 (comment). Should there maybe be a command line option to enable this?
I'm opening this issue, as the creator of
sqlalchemy
suggested to report this to the underlying asyncio runner. See MagicStack/asyncpg#863 (comment)The text was updated successfully, but these errors were encountered: