Skip to content

Support for IsolatedAsyncioTestCase

Choose a tag to compare

@JayBazuzi JayBazuzi released this 29 Mar 17:51
· 123 commits to main since this release

Added support for isolated asyncio test cases:

class SomeTests(IsolatedAsyncioTestCase):
    async def test_example(self):
        verify("something")

#239