From: Alexandre Detiste <tchet@debian.org>
Subject: lazy_fixture is broken and unmaintained
Forwarded: no, horrible patch, drop ASAP

--- a/test/unit/account_info/fixtures.py
+++ b/test/unit/account_info/fixtures.py
@@ -82,24 +82,8 @@
     return sqlite_account_info_factory()
 
 
-@pytest.fixture(
-    params=[
-        pytest.lazy_fixture('in_memory_account_info_factory'),
-        pytest.lazy_fixture('sqlite_account_info_factory'),
-    ]
-)
-def account_info_factory(request):
-    return request.param
-
-
-@pytest.fixture(
-    params=[
-        pytest.lazy_fixture('in_memory_account_info'),
-        pytest.lazy_fixture('sqlite_account_info'),
-    ]
-)
-def account_info(request):
-    return request.param
+account_info_factory = in_memory_account_info_factory
+account_info = in_memory_account_info
 
 
 @pytest.fixture
--- a/test/unit/test_cache.py
+++ b/test/unit/test_cache.py
@@ -13,7 +13,6 @@
 
 import pytest
 from apiver_deps import AuthInfoCache, DummyCache, InMemoryAccountInfo, InMemoryCache
-from pytest_lazyfixture import lazy_fixture
 
 
 @pytest.fixture
@@ -31,12 +30,7 @@
     return AuthInfoCache(InMemoryAccountInfo())
 
 
-@pytest.fixture(
-    scope="class", params=[lazy_fixture('in_memory_cache'),
-                           lazy_fixture('auth_info_cache')]
-)
-def cache(request):
-    return request.param
+cache = in_memory_cache
 
 
 @dataclass
