alt-pytest-asyncio
alt-pytest-asyncio copied to clipboard
An alternative plugin for pytest to make it support async tests and fixtures
Yay, excited to see someone taking up the task of writing better asyncio pytest plugin! I think it would help casual users if there was a comparison against `pytest-asyncio` in...
As `pytest-asyncio`, it seems that `alt-pytest-asyncio` also doesn't propagate ContextVar to tests. Instead of duplicating the problem description, I will list the references to the issue below: * [ContextVar not...
The code that checks whether a debugger is active has become outdated. Currently it only checks `sys.gettrace()`, but apparently python has introduced a new API for this. The correct code...
After [PEP 669](https://peps.python.org/pep-0669/) there is now a formal way to determine if a debugger is active, which replaces sys.gettrace. Fixes #32