Skip to content

Commit df7a8ee

Browse files
committed
add docstring to store2 pytest fixture
1 parent c1e972d commit df7a8ee

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ async def store(request: pytest.FixtureRequest, tmpdir: LEGACY_PATH) -> Store:
7777

7878
@pytest.fixture
7979
async def store2(request: pytest.FixtureRequest, tmpdir: LEGACY_PATH) -> Store:
80+
"""Fixture to create a second store for testing copy operations between stores"""
8081
param = request.param
8182
store2_path = tmpdir.mkdir("store2")
8283
return await parse_store(param, str(store2_path))

0 commit comments

Comments
 (0)