We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Python asyncio library has a debug mode, which is supposed to ease developing: https://docs.python.org/3/library/asyncio-dev.html#debug-mode
asyncio
What about enabling this in pytest-asyncio for the default event loop? This could be made configurable via a config option.
pytest-asyncio
The text was updated successfully, but these errors were encountered:
I expect a lot of Executing <...> took 0.103 seconds warnings at least.
Executing <...> took 0.103 seconds
Adding a config option sound like a great idea though.
Sorry, something went wrong.
I would also support a PR that adds a config option (+command line option) to enable the debug mode.
Until then, you can use some of the existing means to enable debug mode, such as setting the PYTHONASYNCIODEBUG environment variable.
No branches or pull requests
The Python
asyncio
library has a debug mode, which is supposed to ease developing: https://docs.python.org/3/library/asyncio-dev.html#debug-modeWhat about enabling this in
pytest-asyncio
for the default event loop? This could be made configurable via a config option.The text was updated successfully, but these errors were encountered: