summaryrefslogtreecommitdiff
path: root/dev-python/b2sdk/files
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-07-08 19:13:23 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-07-08 19:13:23 +0000
commitedbbeffe1122d805d1ca0f67457432204ea50e5e (patch)
tree3a26cb961f709086b673b9105393119a34029f35 /dev-python/b2sdk/files
parente2c8371499a6ce7ef5136931610249a0b81053ef (diff)
downloadbaldeagleos-repo-edbbeffe1122d805d1ca0f67457432204ea50e5e.tar.gz
baldeagleos-repo-edbbeffe1122d805d1ca0f67457432204ea50e5e.tar.xz
baldeagleos-repo-edbbeffe1122d805d1ca0f67457432204ea50e5e.zip
Adding metadata
Diffstat (limited to 'dev-python/b2sdk/files')
-rw-r--r--dev-python/b2sdk/files/b2sdk-2.3.0-lazy-fixtures.patch56
1 files changed, 0 insertions, 56 deletions
diff --git a/dev-python/b2sdk/files/b2sdk-2.3.0-lazy-fixtures.patch b/dev-python/b2sdk/files/b2sdk-2.3.0-lazy-fixtures.patch
deleted file mode 100644
index 0a942878433c..000000000000
--- a/dev-python/b2sdk/files/b2sdk-2.3.0-lazy-fixtures.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-Migrate from pytest-lazy-fixture to pytest-lazy-fixtures.
-https://github.com/Backblaze/b2-sdk-python/issues/484
---- a/test/unit/account_info/fixtures.py
-+++ b/test/unit/account_info/fixtures.py
-@@ -11,6 +11,7 @@ from __future__ import annotations
-
- import pytest
- from apiver_deps import InMemoryAccountInfo, SqliteAccountInfo
-+from pytest_lazy_fixtures import lf
-
-
- @pytest.fixture
-@@ -84,8 +85,8 @@ def sqlite_account_info(sqlite_account_info_factory):
-
- @pytest.fixture(
- params=[
-- pytest.lazy_fixture('in_memory_account_info_factory'),
-- pytest.lazy_fixture('sqlite_account_info_factory'),
-+ lf('in_memory_account_info_factory'),
-+ lf('sqlite_account_info_factory'),
- ]
- )
- def account_info_factory(request):
-@@ -94,8 +95,8 @@ def account_info_factory(request):
-
- @pytest.fixture(
- params=[
-- pytest.lazy_fixture('in_memory_account_info'),
-- pytest.lazy_fixture('sqlite_account_info'),
-+ lf('in_memory_account_info'),
-+ lf('sqlite_account_info'),
- ]
- )
- def account_info(request):
---- a/test/unit/test_cache.py
-+++ b/test/unit/test_cache.py
-@@ -13,7 +13,7 @@ from dataclasses import dataclass
-
- import pytest
- from apiver_deps import AuthInfoCache, DummyCache, InMemoryAccountInfo, InMemoryCache
--from pytest_lazyfixture import lazy_fixture
-+from pytest_lazy_fixtures import lf
-
-
- @pytest.fixture
-@@ -32,8 +32,8 @@ def auth_info_cache():
-
-
- @pytest.fixture(
-- scope="class", params=[lazy_fixture('in_memory_cache'),
-- lazy_fixture('auth_info_cache')]
-+ params=[lf('in_memory_cache'),
-+ lf('auth_info_cache')]
- )
- def cache(request):
- return request.param