From df7a8ee2b7fbcbd5759222342bafa66ec2690133 Mon Sep 17 00:00:00 2001 From: brokkoli71 Date: Wed, 5 Feb 2025 13:14:06 +0100 Subject: [PATCH] add docstring to store2 pytest fixture --- tests/conftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/conftest.py b/tests/conftest.py index 56abf5f76e..c4c07df030 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -77,6 +77,7 @@ async def store(request: pytest.FixtureRequest, tmpdir: LEGACY_PATH) -> Store: @pytest.fixture async def store2(request: pytest.FixtureRequest, tmpdir: LEGACY_PATH) -> Store: + """Fixture to create a second store for testing copy operations between stores""" param = request.param store2_path = tmpdir.mkdir("store2") return await parse_store(param, str(store2_path))