Michael Seifert
Michael Seifert
> I tried setting the scope in conftest using: > > ``` > def pytest_configure(config): > config.addinivalue_line("asyncio_default_fixture_loop_scope", "function") > ``` > > But I get an assert isinstance(x, list) error,...
@earonesty This has also been requested in #1095 in the meantime.
Thanks for the reproducer. Good call for opening a separate issue!
@nzeid I'm sorry that you had to go through so much trouble. Pytest-asyncio v0.23 supports running tests in different event loops. There's a loop for each level of the test...
The issue title is very general. I think different issues have come in the discussion: - @bmerry's initial example can no longer be reproduces in pytest-asyncio v0.23.7 - @nzeid's issue...
Huh, interesting. Thanks for reporting this! And the feedback on the migration is also much appreciated! Is there a chance you have a minimal reproducer of the issue? A small...
@sawalls Sorry, I completely missed this issue until now. I agree with your expectation. I ran your code against v0.25.1 and the v1.0.0a1 pre-release and both test runs hang. When...
It's possible to use `pytest.mark.asyncio` in conjunction with `pytest.mark.parametrize`, but the tests will be executed synchronously. Pytest doesn't run tests cases concurrently, neither does pytest-asyncio. Please refer to #69 for...
Good catch and great reproducer! Thanks for the report. The test that breaks the event loop is actually _test_use_function_scope_loop_1_. It uses the deprecated _event_loop_ fixture which entails a bunch of...
@Bibo-Joshi Your point about the docs is absolutely valid, thanks for raising it. We should track the documentation issue as part of #375 .