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

docs: specify how asyncio's mode can be set #1043

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/concepts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,12 @@ Assigning neighboring tests to different event loop scopes is discouraged as it
Test discovery modes
====================

Pytest-asyncio provides two modes for test discovery, *strict* and *auto*.
Pytest-asyncio provides two modes for test discovery, *strict* and *auto*. This can be set through Pytest's ``--asyncio-mode`` command line flag, or through the configuration file:

.. code-block:: toml

[tool.pytest.ini_options]
asyncio_mode = "auto" # or "strict"

Strict mode
-----------
Expand Down
Loading