1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
From: Alastair McKinstry <mckinstry@debian.org>
Date: Thu, 1 Feb 2024 10:47:31 +0000
Subject: Skip 2 tests requiring download
---
xarray/tests/test_backends.py | 2 ++
1 file changed, 2 insertions(+)
--- a/xarray/tests/test_backends.py
+++ b/xarray/tests/test_backends.py
@@ -4518,6 +4518,7 @@
"https://www.unidata.ucar.edu/software/netcdf/examples/OMI-Aura_L2-example.nc"
)
+ @pytest.mark.skip("Skipping due to download needed")
@pytest.mark.filterwarnings("ignore:Duplicate dimension names")
def test_get_variable_list(self) -> None:
with open_dataset(
@@ -4527,6 +4528,7 @@
) as actual:
assert "Temperature" in list(actual)
+ @pytest.mark.skip("Skipping due to download needed")
@pytest.mark.filterwarnings("ignore:Duplicate dimension names")
def test_get_variable_list_empty_driver_kwds(self) -> None:
driver_kwds = {
|