Compare commits
29 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 3c40e37133 | |||
| d937cf86bd | |||
| 0d097c0969 | |||
| b1fd431cd1 | |||
| 36d0c84cb6 | |||
| 7afde0eff5 | |||
| 24efb77e1a | |||
| b1d5daabf2 | |||
| 47fc0b7465 | |||
| 4ad6649829 | |||
| 5e476c6c7c | |||
| 48d227f89e | |||
| 4f724d43ca | |||
| 615a458611 | |||
| 06a166d79c | |||
| 25b861864f | |||
| 5fba09db8b | |||
| 9a70025e21 | |||
| faec3a4723 | |||
| 8593e6ef29 | |||
| ce37f39229 | |||
| 433ac0ccce | |||
| 6a8e358e1b | |||
| 03b3fdab64 | |||
| 84c282ef77 | |||
| 92a94a53b5 | |||
| badd4634c7 | |||
| 5df94c6228 | |||
| 93498edb4c |
BIN
pytest-asyncio-0.23.7.tar.gz
LFS
BIN
pytest-asyncio-0.23.7.tar.gz
LFS
Binary file not shown.
BIN
pytest-asyncio-0.26.0.tar.gz
LFS
Normal file
BIN
pytest-asyncio-0.26.0.tar.gz
LFS
Normal file
Binary file not shown.
@@ -1,3 +1,69 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 28 14:19:40 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 0.26.0:
|
||||
* Adds configuration option that sets default event loop scope
|
||||
for all tests #793
|
||||
* Improved type annotations for pytest_asyncio.fixture #1045
|
||||
* Added typing-extensions as additional dependency for Python
|
||||
<3.10 #1045
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 5 12:37:11 UTC 2025 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
||||
|
||||
- update to 0.25.3:
|
||||
* Avoid errors in cleanup of async generators when event loop is
|
||||
already closed #1040
|
||||
- update to 0.25.2:
|
||||
* Call loop.shutdown_asyncgens() before closing the event loop to
|
||||
ensure async generators are closed in the same manner as
|
||||
asyncio.run does #1034
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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>
|
||||
|
||||
- Add duplicated-markers.patch to fix some testsuites broken by
|
||||
that issue.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 6 20:26:26 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-pytest-asyncio
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -26,7 +26,7 @@
|
||||
%endif
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-pytest-asyncio%{psuffix}
|
||||
Version: 0.23.7
|
||||
Version: 0.26.0
|
||||
Release: 0
|
||||
Summary: Pytest support for asyncio
|
||||
License: Apache-2.0
|
||||
@@ -39,14 +39,10 @@ BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: (python-pytest >= 7.0.0 with python-pytest < 9)
|
||||
%if 0%{?python_version_nodots} < 38
|
||||
Requires: python-typing-extensions >= 3.7.2
|
||||
%endif
|
||||
Requires: (python-pytest >= 8.2.0 with python-pytest < 9)
|
||||
BuildArch: noarch
|
||||
%if %{with test}
|
||||
BuildRequires: %{python_module hypothesis >= 5.7.1}
|
||||
BuildRequires: %{python_module pytest >= 7.0.0 with %python-pytest < 9}
|
||||
BuildRequires: %{python_module pytest-asyncio = %{version}}
|
||||
%endif
|
||||
%python_subpackages
|
||||
|
||||
Reference in New Issue
Block a user