Skip to content

Skip tests that often take ages in the CI #398

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions virtualizarr/tests/test_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,13 +234,15 @@ class TestReadFromURL:
"netcdf4",
"https://github.com/pydata/xarray-data/raw/master/ROMS_example.nc",
),
(
pytest.param(
"hdf4",
"https://github.com/corteva/rioxarray/raw/master/test/test_data/input/MOD09GA.A2008296.h14v17.006.2015181011753.hdf",
marks=pytest.mark.skip(reason="often times out"),
),
(
pytest.param(
"hdf5",
"https://nisar.asf.earthdatacloud.nasa.gov/NISAR-SAMPLE-DATA/GCOV/ALOS1_Rosamond_20081012/NISAR_L2_PR_GCOV_001_005_A_219_4020_SHNA_A_20081012T060910_20081012T060926_P01101_F_N_J_001.h5",
marks=pytest.mark.skip(reason="often times out"),
),
# https://github.com/zarr-developers/VirtualiZarr/issues/159
# ("hdf5", "https://github.com/fsspec/kerchunk/raw/main/kerchunk/tests/NEONDSTowerTemperatureData.hdf5"),
Expand Down Expand Up @@ -284,7 +286,7 @@ def test_read_from_url(self, hdf_backend, filetype, url):
vds = open_virtual_dataset(url, indexes={})
assert isinstance(vds, xr.Dataset)

@pytest.mark.xfail(reason="often times out, as nisar file is 200MB")
@pytest.mark.skip(reason="often times out, as nisar file is 200MB")
def test_virtualizarr_vs_local_nisar(self, hdf_backend):
import fsspec

Expand Down