File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 2
2
Changelog
3
3
=========
4
4
5
+ 0.24.1 (2024-11-20)
6
+ ===================
7
+ - Verbose log displays correct parameter name: asyncio_default_fixture_loop_scope
8
+
9
+
5
10
0.24.0 (2024-08-22)
6
11
===================
7
12
- BREAKING: Updated minimum supported pytest version to v8.2.0
Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ def pytest_report_header(config: Config) -> list[str]:
216
216
"""Add asyncio config to pytest header."""
217
217
mode = _get_asyncio_mode (config )
218
218
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 } " ]
220
220
221
221
222
222
def _preprocess_async_fixtures (
You can’t perform that action at this time.
0 commit comments