Skip to content
New issue

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

Relax asyncio_mode type definition; it allows to support pytest 6.1+ #264

Merged
merged 14 commits into from Jan 16, 2022
1 change: 1 addition & 0 deletions README.rst
Expand Up @@ -259,6 +259,7 @@ Changelog
0.17.1 (UNRELEASED)
~~~~~~~~~~~~~~~~~~~
- Fixes a bug that prevents async Hypothesis tests from working without explicit ``asyncio`` marker when ``--asyncio-mode=auto`` is set. `#258 <https://github.com/pytest-dev/pytest-asyncio/issues/258>`_
- Relax ``asyncio_mode`` type definition; it allows to support pytest 5.4+. `#262 <https://github.com/pytest-dev/pytest-asyncio/issues/262>`_

0.17.0 (22-01-13)
~~~~~~~~~~~~~~~~~~~
Expand Down
1 change: 0 additions & 1 deletion pytest_asyncio/plugin.py
Expand Up @@ -53,7 +53,6 @@ def pytest_addoption(parser, pluginmanager):
parser.addini(
"asyncio_mode",
help="default value for --asyncio-mode",
type="string",
default="legacy",
)

Expand Down