From d87a4bc48d1aad57aeca6f2d0b790e7b535ed215 Mon Sep 17 00:00:00 2001 From: Chuck Daniels Date: Tue, 24 Sep 2024 17:21:26 -0400 Subject: [PATCH] Specify explicit engine --- tests/integration/test_kerchunk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_kerchunk.py b/tests/integration/test_kerchunk.py index 8bde9ed4..90a71d19 100644 --- a/tests/integration/test_kerchunk.py +++ b/tests/integration/test_kerchunk.py @@ -49,7 +49,7 @@ def test_consolidate_metadata(tmp_path, granules, output): import xarray as xr # type: ignore # Open directly with `earthaccess.open` - expected = xr.open_mfdataset(earthaccess.open(granules)) + expected = xr.open_mfdataset(earthaccess.open(granules), engine="h5netcdf") # Open with kerchunk consolidated metadata file kwargs = {"outfile": tmp_path / "metadata.json"} if output == "file" else {}