crypto-only
Results
2
comments of
crypto-only
How to simplify this in async test? Such as ``` def test_get(pytester): pytester.makepyfile( """\ async def test_get(): await get() """ ) pytester.runpytest_subprocess("--asyncio-mode=auto") ``` > @unmade Does it solve the issue...
Temporally solve this by adding function fixture, is there a way to just set `pytest` or `pytest-asyncio` to solve the problem? ```python import aioredis import pytest class Client: def __init__(self):...