Skip to content

Commit

Permalink
add docstring to store2 pytest fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
brokkoli71 committed Feb 5, 2025
1 parent c1e972d commit df7a8ee
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit df7a8ee

Please sign in to comment.