Michael Seifert
Michael Seifert
It's always nice to hear feedback from the users, thanks! That's correct, VG2D enforces millimeters as units and there is clearly a need to specify measurements in other units. I...
Thank you! This does explain what's going on in my tests. From my side, this issue can be closed. It would be nice, if this could be configured at runtime,...
> This is fixed by having a global event loop as suggested in [#38 (comment)](https://github.com/pytest-dev/pytest-asyncio/issues/38#issuecomment-264418154). Should there maybe be a command line option to enable this? There has been a...
@nuno-andre pytest-asyncio injects the fixture with the name `event_loop` into every async test case. If you create another fixture named `run_in_loop` and use it in a test, the corresponding test...
pytest-asyncio creates a separate event loop for each `async def` test. The loop is closed at the end of every test case. As you suggested, the `Client._redis_conn` receives a reference...
@crypto-only Have you had a chance to try extending the scope of the event loop fixture as I described in my previous post?
Closing this due to inactivity of the OP. @crypto-only if you have time to try the above fix, I'd very much appreciate your feedback. If the issue is not resolved...
When I did a test a couple of days ago I could reproduce the issue with `@mock.patch.dict`, but not `@mock.patch`. I found that `patch` performs some [special treatment](https://github.com/python/cpython/blob/6ac0f8f0d795bba678be56bd4b0bb9ae3fbedb15/Lib/unittest/mock.py#L1324-L1325) for coroutines,...
I opened a CPython issue regarding this: https://github.com/python/cpython/issues/98086
@sobolevn Will these changes be considered for backports to earlier Python versions? I'm asking, because I'm trying to assess if pytest-asyncio needs to provide a workaround.