-
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
Future <Future pending> attached to a different loop error if hypothesis and @pytest.mark.asyncio are used #117
Comments
As far as I understand, test cases using Hypothesis run in their own event loop. That loop is completely separate from the loop returned by the The function responsible is pytest-asyncio/pytest_asyncio/plugin.py Lines 162 to 176 in f35d06b
I think the same problem has been plaguing me for some time in the context of |
I suspect this could be done to make tests more reproducible - using clean event loop per generated example should minimize potential interference between examples. It can be worthwhile since hypothesis runs hundreds examples per test, and can be especially sensitive to flakiness during shrinking. However this is just a guess. It would be great if someone could point how to address problem correctly. I suspect there can be one of two solutions:
|
Hi everyone, Hypothesis maintainer here - I actually wrote this code, so:
I'm pretty sure it's possible to hook it all togther so that it works, I just didn't understand pytest-asyncio well enough to do so! #102 was the pull request, and has some related commentary on this topic. In fact I still don't, but I'd be happy to review any proposals or pull requests for this - just (The key invariant is that each test case must be fully independent of any other, so state must not leak between calls, and I don't understand the event_loop behaviour well enough to be rely on that. It's also made harder by HypothesisWorks/hypothesis#377, that function-scoped fixtures are run once each for the outer wrapper rather than for each test case.) But the important point is that Hypothesis tests don't require their own event loop, just that each test be fully isolated. |
Thank you for bringing this to attention again! I had actually worked on some changes, which have fallen by the wayside… I know neither pytest-asyncio nor hypothesis well, so I am happy for any input on the upcoming PR :) |
@VladimirWork is this issue resolved? |
Hello, could you please help me with this issue? I'm trying to send values from hypothesis in async test with await calls inside and getting subject error (I've tried trick from #38 for event_loop but it still doesn't work, also it looks like your hypothesis tests have no awaits inside but asserts only so could you point me to any real example of hypothesis+pytest-asyncio usage?):
platform linux -- Python 3.5.2, pytest-4.3.1, py-1.8.0, pluggy-0.7.1
plugins: hypothesis-4.14.0, testinfra-2.0.0, asyncio-0.10.0
conftest.py:
test.py:
stacktrace:
The text was updated successfully, but these errors were encountered: