pytest-asyncio
pytest-asyncio copied to clipboard
Asyncio support for pytest
Bumps [coverage](https://github.com/nedbat/coveragepy) from 7.6.1 to 7.6.4. Changelog Sourced from coverage's changelog. Version 7.6.4 — 2024-10-20 fix: multi-line with statements could cause contained branches to be incorrectly marked as missing (issue...
First of all, thanks for the great pytest plugin! Also, I like the idea of being able to specify event_loop scopes explicitly and separately to the fixture scopes. While playing...
Pytest-asyncio v0.24 introduced the configuration option _asyncio_default_fixture_loop_scope_ which controls the event loop in which async fixtures are run. In order to allow partial migration of test suites, users have the...
- [x] Detect function-scoped loop in addition to larger-scoped loop - [x] Detect larger than function-scoped loops in addition to other larger-scoped loops - [ ] Fix detection in auto...
Something about how pytest-asyncio is handling finalizers isn't working right. When a task is abandoned by a test, the task's finalizers get run outside of the event loop, meaning any...
I'm hitting an issue using `pytest-asyncio` alongside `pytest-doctestplus`, a plugin for detecting tests in documentation. I admittedly don't know which plugin might need to change here, though given the popularity...
This PR adds a job that publishes release artifacts to test.pypi.org when merging to main. It also moves the step for creating a GitHub release into the job that assembles...
Hi. First of all, thanks for the library — it is really a timesaver! ;-) Now, to the point: I maintain a fancy library [looptime](https://github.com/nolar/looptime) that compacts the loop time...
First of all, thanks for the all the work put to release v1.0.0. It was really easy to migrate from v0.21. However we found a weird issue when using uvloop...
Before 1.0 you could use the "event_loop" fixture for custom set up and tear down instructions on the event loop. With removal of the fixture in 1.0.0 there seems to...