Skip to content

Commit 676c52f

Browse files
committed
Support item assets that reference virtual icechunk stores
1 parent 498eb9e commit 676c52f

File tree

4 files changed

+453
-13
lines changed

4 files changed

+453
-13
lines changed

tests/conftest.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,17 @@ def data_cube_kerchunk() -> pystac.ItemCollection:
2525

2626

2727
@pytest.fixture(scope="module")
28-
def virtual_icechunk() -> pystac.ItemCollection:
28+
def virtual_icechunk_collection() -> pystac.Collection:
2929
path = "tests/data/virtual-icechunk-collection.json"
3030
return pystac.Collection.from_file(path)
3131

3232

33+
@pytest.fixture(scope="module")
34+
def virtual_icechunk_item() -> pystac.Item:
35+
path = "tests/data/virtual-icechunk-item.json"
36+
return pystac.Item.from_file(path)
37+
38+
3339
@pytest.fixture(scope="module")
3440
def simple_search() -> pystac_client.ItemSearch:
3541
client = pystac_client.Client.open(STAC_URLS["EARTH-SEARCH"])

0 commit comments

Comments
 (0)