Skip to content

Commit 0a6d43c

Browse files
Bump prefix-dev/setup-pixi from 0.8.11 to 0.8.14 in the actions group (#105)
* Bump prefix-dev/setup-pixi from 0.8.11 to 0.8.14 in the actions group Bumps the actions group with 1 update: [prefix-dev/setup-pixi](https://github.com/prefix-dev/setup-pixi). Updates `prefix-dev/setup-pixi` from 0.8.11 to 0.8.14 - [Release notes](https://github.com/prefix-dev/setup-pixi/releases) - [Commits](prefix-dev/setup-pixi@v0.8.11...v0.8.14) --- updated-dependencies: - dependency-name: prefix-dev/setup-pixi dependency-version: 0.8.14 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> * new column from nasa cmr-stac * doubled assets for http and s3 hrefs --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Scott Henderson <[email protected]>
1 parent 827e42e commit 0a6d43c

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.github/workflows/pixi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515

16-
- uses: prefix-dev/[email protected].11
16+
- uses: prefix-dev/[email protected].14
1717
with:
1818
environments: dev
1919
manifest-path: pyproject.toml

tests/test_search.py

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ def test_maxar_specific_ids():
162162
"datetime",
163163
"end_datetime",
164164
"start_datetime",
165-
"dayofyear",
165+
"storage:schemes",
166+
"dayofyear", # added by coincident.search
166167
}
167168

168169

@@ -178,10 +179,10 @@ def test_icesat2_search(aoi):
178179
filter(lambda x: x["roles"] == "data", gf.iloc[0].assets.values())
179180
)
180181
assert gf.iloc[0].stac_version == expected_stac_version
181-
assert gf.shape == (25, 13)
182+
assert gf.shape == (25, len(expected_nasa_columns))
182183
assert actual_columns == expected_nasa_columns
183184
assert "roles" in gf.iloc[0].assets["browse"]
184-
assert len(data_assets) == 1
185+
assert len(data_assets) == 2
185186
assert gf.iloc[0].collection.startswith("ATL03")
186187
assert isinstance(gf.start_datetime.iloc[0], gpd.pd.Timestamp)
187188

@@ -198,10 +199,10 @@ def test_gedi_search(aoi):
198199
filter(lambda x: x["roles"] == "data", gf.iloc[0].assets.values())
199200
)
200201
assert gf.iloc[0].stac_version == expected_stac_version
201-
assert gf.shape == (33, 13)
202+
assert gf.shape == (33, len(expected_nasa_columns))
202203
assert actual_columns == expected_nasa_columns
203204
assert "roles" in gf.iloc[0].assets["browse"]
204-
assert len(data_assets) == 1
205+
assert len(data_assets) == 2
205206
assert gf.iloc[0].collection.startswith("GEDI02_A")
206207
assert isinstance(gf.start_datetime.iloc[0], gpd.pd.Timestamp)
207208

@@ -219,10 +220,10 @@ def test_gliht_search():
219220
filter(lambda x: x["roles"] == "data", gf.iloc[0].assets.values())
220221
)
221222
assert gf.iloc[0].stac_version == expected_stac_version
222-
assert gf.shape == (10, 13)
223+
assert gf.shape == (10, len(expected_nasa_columns))
223224
assert actual_columns == expected_nasa_columns
224225
assert "roles" in gf.iloc[0].assets["browse"]
225-
assert len(data_assets) == 3
226+
assert len(data_assets) == 6
226227
assert gf.iloc[0].collection.startswith("GLDSMT_001")
227228
assert isinstance(gf.start_datetime.iloc[0], gpd.pd.Timestamp)
228229

0 commit comments

Comments
 (0)