Skip to content

Commit 1c977d7

Browse files
committed
Merge commit 'eadce7954e10a649e402bb6a11d4987c938de796' into catchup/main_from_long_lived_datalayer_merkle_blob_eadce7954e10a649e402bb6a11d4987c938de796
2 parents eca97fa + eadce79 commit 1c977d7

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.
16.9 KB
Binary file not shown.
127 KB
Binary file not shown.
13.2 KB
Binary file not shown.
48 KB
Binary file not shown.
11.5 KB
Binary file not shown.
27.7 KB
Binary file not shown.
16.8 KB
Binary file not shown.
121 KB
Binary file not shown.

0 commit comments

Comments
 (0)