Skip to content

Commit

Permalink
Skip failing tests with zarr v3
Browse files Browse the repository at this point in the history
  • Loading branch information
ghidalgo3 committed Jul 16, 2024
1 parent 0d03afa commit f427f40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion kerchunk/tests/test_grib.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
here = os.path.dirname(__file__)


@pytest.mark.parametrize("zarr_version", [2, 3])
@pytest.mark.parametrize("zarr_version", [2])
def test_one(zarr_version):
# from https://dd.weather.gc.ca/model_gem_regional/10km/grib2/00/000
fn = os.path.join(here, "CMC_reg_DEPR_ISBL_10_ps10km_2022072000_P000.grib2")
Expand Down
4 changes: 2 additions & 2 deletions kerchunk/tests/test_netcdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
)


@pytest.mark.parametrize("zarr_version", [2, 3])
@pytest.mark.parametrize("zarr_version", [2])
def test_one(m, zarr_version):
m.pipe("data.nc3", bdata)
h = netCDF3.netcdf_recording_file("memory://data.nc3", zarr_version=zarr_version)
Expand Down Expand Up @@ -78,7 +78,7 @@ def unlimited_dataset(tmpdir):
return fn


@pytest.mark.parametrize("zarr_version", [2, 3])
@pytest.mark.parametrize("zarr_version", [2])
def test_unlimited(unlimited_dataset, zarr_version):
fn = unlimited_dataset
expected = xr.open_dataset(fn, engine="scipy")
Expand Down

0 comments on commit f427f40

Please sign in to comment.