Skip to content

Commit 55339d6

Browse files
authored
catchup: into main from long_lived/datalayer_merkle_blob @ eadce79 (#20096)
Source hash: eadce79 Remaining commits: 0
2 parents e129562 + 1c977d7 commit 55339d6

File tree

118 files changed

+1964
-2676
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+1964
-2676
lines changed

chia/_tests/core/data_layer/conftest.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,13 @@ def store_id_fixture() -> bytes32:
6161

6262

6363
@pytest.fixture(name="raw_data_store", scope="function")
64-
async def raw_data_store_fixture(database_uri: str) -> AsyncIterable[DataStore]:
65-
async with DataStore.managed(database=database_uri, uri=True) as store:
64+
async def raw_data_store_fixture(database_uri: str, tmp_path: pathlib.Path) -> AsyncIterable[DataStore]:
65+
async with DataStore.managed(
66+
database=database_uri,
67+
uri=True,
68+
merkle_blobs_path=tmp_path.joinpath("merkle-blobs"),
69+
key_value_blobs_path=tmp_path.joinpath("key-value-blobs"),
70+
) as store:
6671
yield store
6772

6873

chia/_tests/core/data_layer/old_format/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)