Skip to content

Commit 45313f7

Browse files
committed
display full param name asyncio_default_fixture_loop_scope
1 parent 2462d86 commit 45313f7

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

docs/reference/changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog
33
=========
44

5+
0.24.1 (2024-11-20)
6+
===================
7+
- Verbose log displays correct parameter name: asyncio_default_fixture_loop_scope
8+
9+
510
0.24.0 (2024-08-22)
611
===================
712
- BREAKING: Updated minimum supported pytest version to v8.2.0

pytest_asyncio/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def pytest_report_header(config: Config) -> list[str]:
216216
"""Add asyncio config to pytest header."""
217217
mode = _get_asyncio_mode(config)
218218
default_loop_scope = config.getini("asyncio_default_fixture_loop_scope")
219-
return [f"asyncio: mode={mode}, default_loop_scope={default_loop_scope}"]
219+
return [f"asyncio: mode={mode}, asyncio_default_fixture_loop_scope={default_loop_scope}"]
220220

221221

222222
def _preprocess_async_fixtures(

0 commit comments

Comments
 (0)