We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 357cddb commit 724be81Copy full SHA for 724be81
README.rst
@@ -260,6 +260,7 @@ Changelog
260
0.18.2 (Unreleased)
261
~~~~~~~~~~~~~~~~~~~
262
- Fix asyncio auto mode not marking static methods. `#295 <https://github.com/pytest-dev/pytest-asyncio/issues/295>`_
263
+- Fix a compatibility issue with Hypothesis 6.39.0. `#302 <https://github.com/pytest-dev/pytest-asyncio/issues/302>`_
264
265
266
0.18.1 (22-02-10)
pytest_asyncio/plugin.py
@@ -432,8 +432,8 @@ def wrap_in_sync(
432
func = raw_func
433
434
@functools.wraps(func)
435
- def inner(**kwargs):
436
- coro = func(**kwargs)
+ def inner(*args, **kwargs):
+ coro = func(*args, **kwargs)
437
if not inspect.isawaitable(coro):
438
pyfuncitem.warn(
439
pytest.PytestWarning(
0 commit comments