File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -178,6 +178,8 @@ Changelog
178
178
- The ``forbid_global_loop `` parameter has been removed.
179
179
- Support for async and async gen fixtures has been added.
180
180
`#45 <https://github.com/pytest-dev/pytest-asyncio/pull/45 >`_
181
+ - The deprecation warning regarding ``asyncio.async() `` has been fixed.
182
+ `#51 <https://github.com/pytest-dev/pytest-asyncio/pull/51 >`_
181
183
182
184
0.5.0 (2016-09-07)
183
185
~~~~~~~~~~~~~~~~~~
Original file line number Diff line number Diff line change @@ -152,7 +152,8 @@ def pytest_pyfunc_call(pyfuncitem):
152
152
for arg in pyfuncitem ._fixtureinfo .argnames }
153
153
154
154
event_loop .run_until_complete (
155
- asyncio .async (pyfuncitem .obj (** testargs ), loop = event_loop ))
155
+ asyncio .ensure_future (
156
+ pyfuncitem .obj (** testargs ), loop = event_loop ))
156
157
return True
157
158
158
159
You can’t perform that action at this time.
0 commit comments