Sync from SUSE:SLFO:Main python-pytest-asyncio revision 855c62523bd0946d28c549a1433a276d

This commit is contained in:
2025-03-28 16:43:30 +01:00
parent dedd673f30
commit 1f80a62224
5 changed files with 45 additions and 98 deletions

View File

@@ -1,3 +1,42 @@
-------------------------------------------------------------------
Fri Jan 3 09:12:39 UTC 2025 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
- update to 0.25.1:
* Fixes an issue that caused a broken event loop when a
function-scoped test was executed in between two tests with
wider loop scope #950
* Improves test collection speed in auto mode #1020
* Corrects the warning that is emitted upon redefining the
event_loop fixture
-------------------------------------------------------------------
Fri Jan 3 09:10:08 UTC 2025 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
- Update to 0.25.0:
* Deprecated: Added warning when asyncio test requests async
@pytest.fixture in strict mode. This will become an error in a
future version of flake8-asyncio. #979
* Updates the error message about pytest.mark.asyncio's scope
keyword argument to say loop_scope instead. #1004
* Verbose log displays correct parameter name:
asyncio_default_fixture_loop_scope #990
* Propagates contextvars set in async fixtures to other fixtures
and tests on Python 3.11 and above. #1008
-------------------------------------------------------------------
Tue Oct 8 15:42:52 UTC 2024 - Markéta Machová <mmachova@suse.com>
- Update to 0.24.0
* BREAKING: Updated minimum supported pytest version to v8.2.0
* Adds an optional loop_scope keyword argument to pytest.mark.asyncio.
* Deprecates the optional scope keyword argument to pytest.mark.asyncio
for API consistency with pytest_asyncio.fixture.
* Fixes a bug that caused module-scoped async fixtures to fail when
reused in other modules
* Fixes a bug that caused duplicate markers in async tests
* Declare support for Python 3.13
- Drop merged duplicated-markers.patch
-------------------------------------------------------------------
Tue Jul 9 13:43:10 UTC 2024 - Markéta Machová <mmachova@suse.com>