Add a simple nbytes
representation in DataArrays and Dataset repr
#13146
17 fail, 7 357 skipped, 5 090 pass in 1m 8s
Annotations
Check warning on line 0 in xarray.tests.test_dataset.TestDataset
github-actions / Test Results
test_repr (xarray.tests.test_dataset.TestDataset) failed
artifacts/Test results for Linux-3.9 bare-minimum/pytest.xml [took 0s]
Raw output
AssertionError: assert '<xarray.Data...foo: bar' == '<xarray.Data...foo: bar'
- <xarray.Dataset> Size: 2kB
? ----------
+ <xarray.Dataset>
Dimensions: (dim2: 9, dim3: 10, time: 20, dim1: 8)
Coordinates:
- * dim2 (dim2) float64 72B 0.0 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0
? ----
+ * dim2 (dim2) float64 0.0 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0
- * dim3 (dim3) <U1 40B 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j'
? ----
+ * dim3 (dim3) <U1 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j'
- * time (time) datetime64[ns] 160B 2000-01-01 2000-01-02 ... 2000-01-20
? -----
+ * time (time) datetime64[ns] 2000-01-01 2000-01-02 ... 2000-01-20
- numbers (dim3) int64 80B 0 1 2 0 0 1 1 2 2 3
? - ^ -------- --
+ numbers (dim3) int64 0 1 2 0 0 1 1 2 2 3
? ^^^^ ++ ++
Dimensions without coordinates: dim1
Data variables:
- var1 (dim1, dim2) float64 576B -1.086 0.9973 0.283 ... 0.4684 -0.8312
? -----
+ var1 (dim1, dim2) float64 -1.086 0.9973 0.283 ... 0.1995 0.4684 -0.8312
? +++++++
- var2 (dim1, dim2) float64 576B 1.162 -1.097 -2.123 ... 1.267 0.3328
? -----
+ var2 (dim1, dim2) float64 1.162 -1.097 -2.123 ... 0.1302 1.267 0.3328
? +++++++
- var3 (dim3, dim1) float64 640B 0.5565 -0.2121 0.4563 ... -0.2452 -0.3616
? -----
+ var3 (dim3, dim1) float64 0.5565 -0.2121 0.4563 ... -0.2452 -0.3616
Attributes:
foo: bar
self = <xarray.tests.test_dataset.TestDataset object at 0x7fb772455970>
def test_repr(self) -> None:
data = create_test_data(seed=123)
data.attrs["foo"] = "bar"
# need to insert str dtype at runtime to handle different endianness
expected = dedent(
"""\
<xarray.Dataset>
Dimensions: (dim2: 9, dim3: 10, time: 20, dim1: 8)
Coordinates:
* dim2 (dim2) float64 0.0 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0
* dim3 (dim3) %s 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j'
* time (time) datetime64[ns] 2000-01-01 2000-01-02 ... 2000-01-20
numbers (dim3) int64 0 1 2 0 0 1 1 2 2 3
Dimensions without coordinates: dim1
Data variables:
var1 (dim1, dim2) float64 -1.086 0.9973 0.283 ... 0.1995 0.4684 -0.8312
var2 (dim1, dim2) float64 1.162 -1.097 -2.123 ... 0.1302 1.267 0.3328
var3 (dim3, dim1) float64 0.5565 -0.2121 0.4563 ... -0.2452 -0.3616
Attributes:
foo: bar"""
% data["dim3"].dtype
)
actual = "\n".join(x.rstrip() for x in repr(data).split("\n"))
print(actual)
> assert expected == actual
E AssertionError: assert '<xarray.Data...foo: bar' == '<xarray.Data...foo: bar'
E
E - <xarray.Dataset> Size: 2kB
E ? ----------
E + <xarray.Dataset>
E Dimensions: (dim2: 9, dim3: 10, time: 20, dim1: 8)
E Coordinates:
E - * dim2 (dim2) float64 72B 0.0 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0
E ? ----
E + * dim2 (dim2) float64 0.0 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0
E - * dim3 (dim3) <U1 40B 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j'
E ? ----
E + * dim3 (dim3) <U1 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j'
E - * time (time) datetime64[ns] 160B 2000-01-01 2000-01-02 ... 2000-01-20
E ? -----
E + * time (time) datetime64[ns] 2000-01-01 2000-01-02 ... 2000-01-20
E - numbers (dim3) int64 80B 0 1 2 0 0 1 1 2 2 3
E ? - ^ -------- --
E + numbers (dim3) int64 0 1 2 0 0 1 1 2 2 3
E ? ^^^^ ++ ++
E Dimensions without coordinates: dim1
E Data variables:
E - var1 (dim1, dim2) float64 576B -1.086 0.9973 0.283 ... 0.4684 -0.8312
E ? -----
E + var1 (dim1, dim2) float64 -1.086 0.9973 0.283 ... 0.1995 0.4684 -0.8312
E ? +++++++
E - var2 (dim1, dim2) float64 576B 1.162 -1.097 -2.123 ... 1.267 0.3328
E ? -----
E + var2 (dim1, dim2) float64 1.162 -1.097 -2.123 ... 0.1302 1.267 0.3328
E ? +++++++
E - var3 (dim3, dim1) float64 640B 0.5565 -0.2121 0.4563 ... -0.2452 -0.3616
E ? -----
E + var3 (dim3, dim1) float64 0.5565 -0.2121 0.4563 ... -0.2452 -0.3616
E Attributes:
E foo: bar
/home/runner/work/xarray/xarray/xarray/tests/test_dataset.py:310: AssertionError
Check warning on line 0 in xarray.tests.test_dataset.TestDataset
github-actions / Test Results
test_repr_multiindex (xarray.tests.test_dataset.TestDataset) failed
artifacts/Test results for Linux-3.9 bare-minimum/pytest.xml [took 0s]
Raw output
AssertionError: assert '<xarray.Data...\n *empty*' == '<xarray.Data...\n *empty*'
- <xarray.Dataset> Size: 96B
? ----------
+ <xarray.Dataset>
Dimensions: (x: 4)
Coordinates:
- * x (x) object 32B MultiIndex
? ----
+ * x (x) object MultiIndex
- * level_1 (x) object 32B 'a' 'a' 'b' 'b'
? ----
+ * level_1 (x) object 'a' 'a' 'b' 'b'
- * level_2 (x) int64 32B 1 2 1 2
? ^ - ----
+ * level_2 (x) int64 1 2 1 2
? ^^
Data variables:
*empty*
self = <xarray.tests.test_dataset.TestDataset object at 0x7fb772455ac0>
def test_repr_multiindex(self) -> None:
data = create_test_multiindex()
expected = dedent(
"""\
<xarray.Dataset>
Dimensions: (x: 4)
Coordinates:
* x (x) object MultiIndex
* level_1 (x) object 'a' 'a' 'b' 'b'
* level_2 (x) int64 1 2 1 2
Data variables:
*empty*"""
)
actual = "\n".join(x.rstrip() for x in repr(data).split("\n"))
print(actual)
> assert expected == actual
E AssertionError: assert '<xarray.Data...\n *empty*' == '<xarray.Data...\n *empty*'
E
E - <xarray.Dataset> Size: 96B
E ? ----------
E + <xarray.Dataset>
E Dimensions: (x: 4)
E Coordinates:
E - * x (x) object 32B MultiIndex
E ? ----
E + * x (x) object MultiIndex
E - * level_1 (x) object 32B 'a' 'a' 'b' 'b'
E ? ----
E + * level_1 (x) object 'a' 'a' 'b' 'b'
E - * level_2 (x) int64 32B 1 2 1 2
E ? ^ - ----
E + * level_2 (x) int64 1 2 1 2
E ? ^^
E Data variables:
E *empty*
/home/runner/work/xarray/xarray/xarray/tests/test_dataset.py:359: AssertionError
Check warning on line 0 in xarray.tests.test_dataset.TestDataset
github-actions / Test Results
test_unicode_data (xarray.tests.test_dataset.TestDataset) failed
artifacts/Test results for Linux-3.9 bare-minimum/pytest.xml [took 0s]
Raw output
AssertionError: assert '<xarray.Data... å: ∑' == '<xarray.Data... å: ∑'
- <xarray.Dataset> Size: 12B
? ----------
+ <xarray.Dataset>
Dimensions: (foø: 1)
Coordinates:
- * foø (foø) <U3 12B 'ba®'
? ----
+ * foø (foø) <U3 'ba®'
Data variables:
*empty*
Attributes:
å: ∑
self = <xarray.tests.test_dataset.TestDataset object at 0x7fb7723e7550>
def test_unicode_data(self) -> None:
# regression test for GH834
data = Dataset({"foø": ["ba®"]}, attrs={"å": "∑"})
repr(data) # should not raise
byteorder = "<" if sys.byteorder == "little" else ">"
expected = dedent(
"""\
<xarray.Dataset>
Dimensions: (foø: 1)
Coordinates:
* foø (foø) %cU3 %r
Data variables:
*empty*
Attributes:
å: ∑"""
% (byteorder, "ba®")
)
actual = str(data)
> assert expected == actual
E AssertionError: assert '<xarray.Data... å: ∑' == '<xarray.Data... å: ∑'
E
E - <xarray.Dataset> Size: 12B
E ? ----------
E + <xarray.Dataset>
E Dimensions: (foø: 1)
E Coordinates:
E - * foø (foø) <U3 12B 'ba®'
E ? ----
E + * foø (foø) <U3 'ba®'
E Data variables:
E *empty*
E Attributes:
E å: ∑
/home/runner/work/xarray/xarray/xarray/tests/test_dataset.py:408: AssertionError
Check warning on line 0 in xarray.tests.test_dataarray.TestDataArray
github-actions / Test Results
test_repr (xarray.tests.test_dataarray.TestDataArray) failed
artifacts/Test results for Linux-3.9 bare-minimum/pytest.xml [took 0s]
Raw output
AssertionError: assert '<xarray.Data...foo: bar' == '<xarray.Data...foo: bar'
Skipping 38 identical leading characters in diff, use -v to show
- 2, x: 3)> Size: 48B
+ 2, x: 3)>
array([[1, 2, 3],
[4, 5, 6]])
Coordinates:
- * x (x) int64 24B 0 1 2
? ----
+ * x (x) int64 0 1 2
- other int64 8B 0
? ---
+ other int64 0
Dimensions without coordinates: time
Attributes:
foo: bar
self = <xarray.tests.test_dataarray.TestDataArray object at 0x7fb83ec4eb20>
def test_repr(self) -> None:
v = Variable(["time", "x"], [[1, 2, 3], [4, 5, 6]], {"foo": "bar"})
coords = {"x": np.arange(3, dtype=np.int64), "other": np.int64(0)}
data_array = DataArray(v, coords, name="my_variable")
expected = dedent(
"""\
<xarray.DataArray 'my_variable' (time: 2, x: 3)>
array([[1, 2, 3],
[4, 5, 6]])
Coordinates:
* x (x) int64 0 1 2
other int64 0
Dimensions without coordinates: time
Attributes:
foo: bar"""
)
> assert expected == repr(data_array)
E AssertionError: assert '<xarray.Data...foo: bar' == '<xarray.Data...foo: bar'
E
E Skipping 38 identical leading characters in diff, use -v to show
E - 2, x: 3)> Size: 48B
E + 2, x: 3)>
E array([[1, 2, 3],
E [4, 5, 6]])
E Coordinates:
E - * x (x) int64 24B 0 1 2
E ? ----
E + * x (x) int64 0 1 2
E - other int64 8B 0
E ? ---
E + other int64 0
E Dimensions without coordinates: time
E Attributes:
E foo: bar
/home/runner/work/xarray/xarray/xarray/tests/test_dataarray.py:106: AssertionError
Check warning on line 0 in xarray.tests.test_dataset.TestDataset
github-actions / Test Results
test_repr_nep18 (xarray.tests.test_dataset.TestDataset) failed
artifacts/Test results for Linux-3.9 bare-minimum/pytest.xml [took 0s]
Raw output
AssertionError: assert '<xarray.Data... Custom Array' == '<xarray.Data... Custom Array'
- <xarray.Dataset> Size: 16B
? ----------
+ <xarray.Dataset>
Dimensions: (x: 2)
Dimensions without coordinates: x
Data variables:
- foo (x) float64 16B Custom Array
? ----
+ foo (x) float64 Custom Array
self = <xarray.tests.test_dataset.TestDataset object at 0x7fb7723e7100>
def test_repr_nep18(self) -> None:
class Array:
def __init__(self):
self.shape = (2,)
self.ndim = 1
self.dtype = np.dtype(np.float64)
def __array_function__(self, *args, **kwargs):
return NotImplemented
def __array_ufunc__(self, *args, **kwargs):
return NotImplemented
def __repr__(self):
return "Custom\nArray"
dataset = Dataset({"foo": ("x", Array())})
expected = dedent(
"""\
<xarray.Dataset>
Dimensions: (x: 2)
Dimensions without coordinates: x
Data variables:
foo (x) float64 Custom Array"""
)
> assert expected == repr(dataset)
E AssertionError: assert '<xarray.Data... Custom Array' == '<xarray.Data... Custom Array'
E
E - <xarray.Dataset> Size: 16B
E ? ----------
E + <xarray.Dataset>
E Dimensions: (x: 2)
E Dimensions without coordinates: x
E Data variables:
E - foo (x) float64 16B Custom Array
E ? ----
E + foo (x) float64 Custom Array
/home/runner/work/xarray/xarray/xarray/tests/test_dataset.py:435: AssertionError
Check warning on line 0 in xarray.tests.test_dataarray.TestDataArray
github-actions / Test Results
test_repr_multiindex (xarray.tests.test_dataarray.TestDataArray) failed
artifacts/Test results for Linux-3.9 bare-minimum/pytest.xml [took 0s]
Raw output
AssertionError: assert '<xarray.Data...int64 1 2 1 2' == '<xarray.Data...4 32B 1 2 1 2'
- <xarray.DataArray (x: 4)> Size: 32B
? ----------
+ <xarray.DataArray (x: 4)>
array([0, 1, 2, 3])
Coordinates:
- * x (x) object 32B MultiIndex
? ----
+ * x (x) object MultiIndex
- * level_1 (x) object 32B 'a' 'a' 'b' 'b'
? ----
+ * level_1 (x) object 'a' 'a' 'b' 'b'
- * level_2 (x) int64 32B 1 2 1 2
? ^ - ----
+ * level_2 (x) int64 1 2 1 2
? ^^
self = <xarray.tests.test_dataarray.TestDataArray object at 0x7fb83ec4e7f0>
def test_repr_multiindex(self) -> None:
expected = dedent(
"""\
<xarray.DataArray (x: 4)>
array([0, 1, 2, 3])
Coordinates:
* x (x) object MultiIndex
* level_1 (x) object 'a' 'a' 'b' 'b'
* level_2 (x) int64 1 2 1 2"""
)
> assert expected == repr(self.mda)
E AssertionError: assert '<xarray.Data...int64 1 2 1 2' == '<xarray.Data...4 32B 1 2 1 2'
E
E - <xarray.DataArray (x: 4)> Size: 32B
E ? ----------
E + <xarray.DataArray (x: 4)>
E array([0, 1, 2, 3])
E Coordinates:
E - * x (x) object 32B MultiIndex
E ? ----
E + * x (x) object MultiIndex
E - * level_1 (x) object 32B 'a' 'a' 'b' 'b'
E ? ----
E + * level_1 (x) object 'a' 'a' 'b' 'b'
E - * level_2 (x) int64 32B 1 2 1 2
E ? ^ - ----
E + * level_2 (x) int64 1 2 1 2
E ? ^^
/home/runner/work/xarray/xarray/xarray/tests/test_dataarray.py:118: AssertionError
Check warning on line 0 in xarray.tests.test_dataarray.TestDataArray
github-actions / Test Results
test_repr_multiindex_long (xarray.tests.test_dataarray.TestDataArray) failed
artifacts/Test results for Linux-3.9 bare-minimum/pytest.xml [took 0s]
Raw output
AssertionError: assert '<xarray.Data...2 3 4 5 6 7 8' == '<xarray.Data...2 3 4 5 6 7 8'
- <xarray.DataArray (x: 32)> Size: 256B
? -----------
+ <xarray.DataArray (x: 32)>
array([ 0, 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, 27, 28, 29, 30, 31])
Coordinates:
- * x (x) object 256B MultiIndex
? -----
+ * x (x) object MultiIndex
- * level_1 (x) object 256B 'a' 'a' 'a' 'a' 'a' 'a' ... 'd' 'd' 'd' 'd' 'd' 'd'
? -----
+ * level_1 (x) object 'a' 'a' 'a' 'a' 'a' 'a' 'a' ... 'd' 'd' 'd' 'd' 'd' 'd'
? ++++
- * level_2 (x) int64 256B 1 2 3 4 5 6 7 8 1 2 3 4 ... 5 6 7 8 1 2 3 4 5 6 7 8
? ^ ------------
+ * level_2 (x) int64 1 2 3 4 5 6 7 8 1 2 3 4 5 6 ... 4 5 6 7 8 1 2 3 4 5 6 7 8
? ++ +++++ + ^^^^ ++
self = <xarray.tests.test_dataarray.TestDataArray object at 0x7fb85ca51b50>
def test_repr_multiindex_long(self) -> None:
mindex_long = pd.MultiIndex.from_product(
[["a", "b", "c", "d"], [1, 2, 3, 4, 5, 6, 7, 8]],
names=("level_1", "level_2"),
)
mda_long = DataArray(list(range(32)), coords={"x": mindex_long}, dims="x")
expected = dedent(
"""\
<xarray.DataArray (x: 32)>
array([ 0, 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, 27, 28, 29, 30, 31])
Coordinates:
* x (x) object MultiIndex
* level_1 (x) object 'a' 'a' 'a' 'a' 'a' 'a' 'a' ... 'd' 'd' 'd' 'd' 'd' 'd'
* level_2 (x) int64 1 2 3 4 5 6 7 8 1 2 3 4 5 6 ... 4 5 6 7 8 1 2 3 4 5 6 7 8"""
)
> assert expected == repr(mda_long)
E AssertionError: assert '<xarray.Data...2 3 4 5 6 7 8' == '<xarray.Data...2 3 4 5 6 7 8'
E
E - <xarray.DataArray (x: 32)> Size: 256B
E ? -----------
E + <xarray.DataArray (x: 32)>
E array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
E 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31])
E Coordinates:
E - * x (x) object 256B MultiIndex
E ? -----
E + * x (x) object MultiIndex
E - * level_1 (x) object 256B 'a' 'a' 'a' 'a' 'a' 'a' ... 'd' 'd' 'd' 'd' 'd' 'd'
E ? -----
E + * level_1 (x) object 'a' 'a' 'a' 'a' 'a' 'a' 'a' ... 'd' 'd' 'd' 'd' 'd' 'd'
E ? ++++
E - * level_2 (x) int64 256B 1 2 3 4 5 6 7 8 1 2 3 4 ... 5 6 7 8 1 2 3 4 5 6 7 8
E ? ^ ------------
E + * level_2 (x) int64 1 2 3 4 5 6 7 8 1 2 3 4 5 6 ... 4 5 6 7 8 1 2 3 4 5 6 7 8
E ? ++ +++++ + ^^^^ ++
/home/runner/work/xarray/xarray/xarray/tests/test_dataarray.py:136: AssertionError
Check warning on line 0 in xarray.tests.test_dataset.TestDataset
github-actions / Test Results
test_coords_properties (xarray.tests.test_dataset.TestDataset) failed
artifacts/Test results for Linux-3.9 bare-minimum/pytest.xml [took 0s]
Raw output
AssertionError: assert 'Coordinates:... int64 -10' == 'Coordinates:... int64 8B -10'
Coordinates:
- * x (x) int64 16B -1 -2
? ----
+ * x (x) int64 -1 -2
- * y (y) int64 24B 0 1 2
? ----
+ * y (y) int64 0 1 2
- a (x) int64 16B 4 5
? ----
+ a (x) int64 4 5
- b int64 8B -10
? ---
+ b int64 -10
self = <xarray.tests.test_dataset.TestDataset object at 0x7fb77241a310>
def test_coords_properties(self) -> None:
# use int64 for repr consistency on windows
data = Dataset(
{
"x": ("x", np.array([-1, -2], "int64")),
"y": ("y", np.array([0, 1, 2], "int64")),
"foo": (["x", "y"], np.random.randn(2, 3)),
},
{"a": ("x", np.array([4, 5], "int64")), "b": np.int64(-10)},
)
coords = data.coords
assert isinstance(coords, DatasetCoordinates)
# len
assert len(coords) == 4
# iter
assert list(coords) == ["x", "y", "a", "b"]
assert_identical(coords["x"].variable, data["x"].variable)
assert_identical(coords["y"].variable, data["y"].variable)
assert "x" in coords
assert "a" in coords
assert 0 not in coords
assert "foo" not in coords
with pytest.raises(KeyError):
coords["foo"]
with pytest.raises(KeyError):
coords[0]
# repr
expected = dedent(
"""\
Coordinates:
* x (x) int64 -1 -2
* y (y) int64 0 1 2
a (x) int64 4 5
b int64 -10"""
)
actual = repr(coords)
> assert expected == actual
E AssertionError: assert 'Coordinates:... int64 -10' == 'Coordinates:... int64 8B -10'
E
E Coordinates:
E - * x (x) int64 16B -1 -2
E ? ----
E + * x (x) int64 -1 -2
E - * y (y) int64 24B 0 1 2
E ? ----
E + * y (y) int64 0 1 2
E - a (x) int64 16B 4 5
E ? ----
E + a (x) int64 4 5
E - b int64 8B -10
E ? ---
E + b int64 -10
/home/runner/work/xarray/xarray/xarray/tests/test_dataset.py:892: AssertionError
Check warning on line 0 in xarray.tests.test_dataset.TestDataset
github-actions / Test Results
test_data_vars_properties (xarray.tests.test_dataset.TestDataset) failed
artifacts/Test results for Linux-3.9 bare-minimum/pytest.xml [took 0s]
Raw output
AssertionError: assert 'Data variabl... float64 2.0' == 'Data variabl...loat64 8B 2.0'
Data variables:
- foo (x) float64 8B 1.0
? ---
+ foo (x) float64 1.0
- bar float64 8B 2.0
? ---
+ bar float64 2.0
self = <xarray.tests.test_dataset.TestDataset object at 0x7fb77241af70>
def test_data_vars_properties(self) -> None:
ds = Dataset()
ds["foo"] = (("x",), [1.0])
ds["bar"] = 2.0
# iter
assert set(ds.data_vars) == {"foo", "bar"}
assert "foo" in ds.data_vars
assert "x" not in ds.data_vars
assert_identical(ds["foo"], ds.data_vars["foo"])
# repr
expected = dedent(
"""\
Data variables:
foo (x) float64 1.0
bar float64 2.0"""
)
actual = repr(ds.data_vars)
> assert expected == actual
E AssertionError: assert 'Data variabl... float64 2.0' == 'Data variabl...loat64 8B 2.0'
E
E Data variables:
E - foo (x) float64 8B 1.0
E ? ---
E + foo (x) float64 1.0
E - bar float64 8B 2.0
E ? ---
E + bar float64 2.0
/home/runner/work/xarray/xarray/xarray/tests/test_dataset.py:1083: AssertionError
Check warning on line 0 in xarray.tests.test_dataarray.TestDataArray
github-actions / Test Results
test_coords (xarray.tests.test_dataarray.TestDataArray) failed
artifacts/Test results for Linux-3.9 bare-minimum/pytest.xml [took 0s]
Raw output
AssertionError: assert 'Coordinates:...) int64 0 1 2' == 'Coordinates:...t64 24B 0 1 2'
Coordinates:
- * x (x) int64 16B -1 -2
? ----
+ * x (x) int64 -1 -2
- * y (y) int64 24B 0 1 2
? --------
+ * y (y) int64 0 1 2
? ++++
self = <xarray.tests.test_dataarray.TestDataArray object at 0x7fb841d73460>
def test_coords(self) -> None:
# use int64 to ensure repr() consistency on windows
coords = [
IndexVariable("x", np.array([-1, -2], "int64")),
IndexVariable("y", np.array([0, 1, 2], "int64")),
]
da = DataArray(np.random.randn(2, 3), coords, name="foo")
# len
assert len(da.coords) == 2
# iter
assert list(da.coords) == ["x", "y"]
assert coords[0].identical(da.coords["x"])
assert coords[1].identical(da.coords["y"])
assert "x" in da.coords
assert 0 not in da.coords
assert "foo" not in da.coords
with pytest.raises(KeyError):
da.coords[0]
with pytest.raises(KeyError):
da.coords["foo"]
# repr
expected_repr = dedent(
"""\
Coordinates:
* x (x) int64 -1 -2
* y (y) int64 0 1 2"""
)
actual = repr(da.coords)
> assert expected_repr == actual
E AssertionError: assert 'Coordinates:...) int64 0 1 2' == 'Coordinates:...t64 24B 0 1 2'
E
E Coordinates:
E - * x (x) int64 16B -1 -2
E ? ----
E + * x (x) int64 -1 -2
E - * y (y) int64 24B 0 1 2
E ? --------
E + * y (y) int64 0 1 2
E ? ++++
/home/runner/work/xarray/xarray/xarray/tests/test_dataarray.py:1452: AssertionError
Check warning on line 0 in xarray.tests.test_formatting.TestFormatting
github-actions / Test Results
test_diff_array_repr (xarray.tests.test_formatting.TestFormatting) failed
artifacts/Test results for Linux-3.9 bare-minimum/pytest.xml [took 0s]
Raw output
AssertionError: assert 'Left and rig...ription: desc' == 'Left and rig...ription: desc'
Skipping 219 identical leading characters in diff, use -v to show
- (x) <U1 8B 'a' 'b'
? -- -
+ (x) <U1 8B 'a' 'b'
- R * x (x) <U1 8B 'a' 'c'
? -- -
+ R * x (x) <U1 8B 'a' 'c'
Coordinates only on the left object:
- * y (y) int64 24B 1 2 3
? - -
+ * y (y) int64 24B 1 2 3
Coordinates only on the right object:
- label (x) int64 16B 1 2
? - -
+ label (x) int64 16B 1 2
Differing attributes:
L units: m
R units: kg
Attributes only on the left object:
description: desc
self = <xarray.tests.test_formatting.TestFormatting object at 0x7fb772740e50>
def test_diff_array_repr(self) -> None:
da_a = xr.DataArray(
np.array([[1, 2, 3], [4, 5, 6]], dtype="int64"),
dims=("x", "y"),
coords={
"x": np.array(["a", "b"], dtype="U1"),
"y": np.array([1, 2, 3], dtype="int64"),
},
attrs={"units": "m", "description": "desc"},
)
da_b = xr.DataArray(
np.array([1, 2], dtype="int64"),
dims="x",
coords={
"x": np.array(["a", "c"], dtype="U1"),
"label": ("x", np.array([1, 2], dtype="int64")),
},
attrs={"units": "kg"},
)
byteorder = "<" if sys.byteorder == "little" else ">"
expected = dedent(
"""\
Left and right DataArray objects are not identical
Differing dimensions:
(x: 2, y: 3) != (x: 2)
Differing values:
L
array([[1, 2, 3],
[4, 5, 6]], dtype=int64)
R
array([1, 2], dtype=int64)
Differing coordinates:
L * x (x) %cU1 8B 'a' 'b'
R * x (x) %cU1 8B 'a' 'c'
Coordinates only on the left object:
* y (y) int64 24B 1 2 3
Coordinates only on the right object:
label (x) int64 16B 1 2
Differing attributes:
L units: m
R units: kg
Attributes only on the left object:
description: desc"""
% (byteorder, byteorder)
)
actual = formatting.diff_array_repr(da_a, da_b, "identical")
try:
> assert actual == expected
E AssertionError: assert 'Left and rig...ription: desc' == 'Left and rig...ription: desc'
E
E Skipping 153 identical leading characters in diff, use -v to show
E - [4, 5, 6]], dtype=int64)
E + [4, 5, 6]])
E R
E - array([1, 2], dtype=int64)
E + array([1, 2])
E Differing coordinates:
E - L * x (x) <U1 8B 'a' 'b'
E ? -- -
E + L * x (x) <U1 8B 'a' 'b'
E - R * x (x) <U1 8B 'a' 'c'
E ? -- -
E + R * x (x) <U1 8B 'a' 'c'
E Coordinates only on the left object:
E - * y (y) int64 24B 1 2 3
E ? - -
E + * y (y) int64 24B 1 2 3
E Coordinates only on the right object:
E - label (x) int64 16B 1 2
E ? - -
E + label (x) int64 16B 1 2
E Differing attributes:
E L units: m
E R units: kg
E Attributes only on the left object:
E description: desc
/home/runner/work/xarray/xarray/xarray/tests/test_formatting.py:335: AssertionError
During handling of the above exception, another exception occurred:
self = <xarray.tests.test_formatting.TestFormatting object at 0x7fb772740e50>
def test_diff_array_repr(self) -> None:
da_a = xr.DataArray(
np.array([[1, 2, 3], [4, 5, 6]], dtype="int64"),
dims=("x", "y"),
coords={
"x": np.array(["a", "b"], dtype="U1"),
"y": np.array([1, 2, 3], dtype="int64"),
},
attrs={"units": "m", "description": "desc"},
)
da_b = xr.DataArray(
np.array([1, 2], dtype="int64"),
dims="x",
coords={
"x": np.array(["a", "c"], dtype="U1"),
"label": ("x", np.array([1, 2], dtype="int64")),
},
attrs={"units": "kg"},
)
byteorder = "<" if sys.byteorder == "little" else ">"
expected = dedent(
"""\
Left and right DataArray objects are not identical
Differing dimensions:
(x: 2, y: 3) != (x: 2)
Differing values:
L
array([[1, 2, 3],
[4, 5, 6]], dtype=int64)
R
array([1, 2], dtype=int64)
Differing coordinates:
L * x (x) %cU1 8B 'a' 'b'
R * x (x) %cU1 8B 'a' 'c'
Coordinates only on the left object:
* y (y) int64 24B 1 2 3
Coordinates only on the right object:
label (x) int64 16B 1 2
Differing attributes:
L units: m
R units: kg
Attributes only on the left object:
description: desc"""
% (byteorder, byteorder)
)
actual = formatting.diff_array_repr(da_a, da_b, "identical")
try:
assert actual == expected
except AssertionError:
# depending on platform, dtype may not be shown in numpy array repr
> assert actual == expected.replace(", dtype=int64", "")
E AssertionError: assert 'Left and rig...ription: desc' == 'Left and rig...ription: desc'
E
E Skipping 219 identical leading characters in diff, use -v to show
E - (x) <U1 8B 'a' 'b'
E ? -- -
E + (x) <U1 8B 'a' 'b'
E - R * x (x) <U1 8B 'a' 'c'
E ? -- -
E + R * x (x) <U1 8B 'a' 'c'
E Coordinates only on the left object:
E - * y (y) int64 24B 1 2 3
E ? - -
E + * y (y) int64 24B 1 2 3
E Coordinates only on the right object:
E - label (x) int64 16B 1 2
E ? - -
E + label (x) int64 16B 1 2
E Differing attributes:
E L units: m
E R units: kg
E Attributes only on the left object:
E description: desc
/home/runner/work/xarray/xarray/xarray/tests/test_formatting.py:338: AssertionError
Check warning on line 0 in xarray.tests.test_formatting.TestFormatting
github-actions / Test Results
test_diff_dataset_repr (xarray.tests.test_formatting.TestFormatting) failed
artifacts/Test results for Linux-3.9 bare-minimum/pytest.xml [took 0s]
Raw output
AssertionError: assert 'Left and rig...ription: desc' == 'Left and rig...ription: desc'
Skipping 132 identical leading characters in diff, use -v to show
- (x) <U1 8B 'a' 'b'
? -- -
+ (x) <U1 8B 'a' 'b'
Differing variable attributes:
foo: bar
- R * x (x) <U1 8B 'a' 'c'
? -- -
+ R * x (x) <U1 8B 'a' 'c'
Differing variable attributes:
source: 0
foo: baz
Coordinates only on the left object:
- * y (y) int64 24B 1 2 3
? - -
+ * y (y) int64 24B 1 2 3
Coordinates only on the right object:
- label (x) int64 16B 1 2
? - -
+ label (x) int64 16B 1 2
Differing data variables:
- L var1 (x, y) int64 48B 1 2 3 4 5 6
? - -
+ L var1 (x, y) int64 48B 1 2 3 4 5 6
- R var1 (x) int64 16B 1 2
? - -
+ R var1 (x) int64 16B 1 2
Data variables only on the left object:
- var2 (x) int64 16B 3 4
? - -
+ var2 (x) int64 16B 3 4
Differing attributes:
L title: mytitle
R title: newtitle
Attributes only on the left object:
description: desc
self = <xarray.tests.test_formatting.TestFormatting object at 0x7fb776dcf250>
def test_diff_dataset_repr(self) -> None:
ds_a = xr.Dataset(
data_vars={
"var1": (("x", "y"), np.array([[1, 2, 3], [4, 5, 6]], dtype="int64")),
"var2": ("x", np.array([3, 4], dtype="int64")),
},
coords={
"x": (
"x",
np.array(["a", "b"], dtype="U1"),
{"foo": "bar", "same": "same"},
),
"y": np.array([1, 2, 3], dtype="int64"),
},
attrs={"title": "mytitle", "description": "desc"},
)
ds_b = xr.Dataset(
data_vars={"var1": ("x", np.array([1, 2], dtype="int64"))},
coords={
"x": (
"x",
np.array(["a", "c"], dtype="U1"),
{"source": 0, "foo": "baz", "same": "same"},
),
"label": ("x", np.array([1, 2], dtype="int64")),
},
attrs={"title": "newtitle"},
)
byteorder = "<" if sys.byteorder == "little" else ">"
expected = dedent(
"""\
Left and right Dataset objects are not identical
Differing dimensions:
(x: 2, y: 3) != (x: 2)
Differing coordinates:
L * x (x) %cU1 8B 'a' 'b'
Differing variable attributes:
foo: bar
R * x (x) %cU1 8B 'a' 'c'
Differing variable attributes:
source: 0
foo: baz
Coordinates only on the left object:
* y (y) int64 24B 1 2 3
Coordinates only on the right object:
label (x) int64 16B 1 2
Differing data variables:
L var1 (x, y) int64 48B 1 2 3 4 5 6
R var1 (x) int64 16B 1 2
Data variables only on the left object:
var2 (x) int64 16B 3 4
Differing attributes:
L title: mytitle
R title: newtitle
Attributes only on the left object:
description: desc"""
% (byteorder, byteorder)
)
actual = formatting.diff_dataset_repr(ds_a, ds_b, "identical")
> assert actual == expected
E AssertionError: assert 'Left and rig...ription: desc' == 'Left and rig...ription: desc'
E
E Skipping 132 identical leading characters in diff, use -v to show
E - (x) <U1 8B 'a' 'b'
E ? -- -
E + (x) <U1 8B 'a' 'b'
E Differing variable attributes:
E foo: bar
E - R * x (x) <U1 8B 'a' 'c'
E ? -- -
E + R * x (x) <U1 8B 'a' 'c'
E Differing variable attributes:
E source: 0
E foo: baz
E Coordinates only on the left object:
E - * y (y) int64 24B 1 2 3
E ? - -
E + * y (y) int64 24B 1 2 3
E Coordinates only on the right object:
E - label (x) int64 16B 1 2
E ? - -
E + label (x) int64 16B 1 2
E Differing data variables:
E - L var1 (x, y) int64 48B 1 2 3 4 5 6
E ? - -
E + L var1 (x, y) int64 48B 1 2 3 4 5 6
E - R var1 (x) int64 16B 1 2
E ? - -
E + R var1 (x) int64 16B 1 2
E Data variables only on the left object:
E - var2 (x) int64 16B 3 4
E ? - -
E + var2 (x) int64 16B 3 4
E Differing attributes:
E L title: mytitle
E R title: newtitle
E Attributes only on the left object:
E description: desc
/home/runner/work/xarray/xarray/xarray/tests/test_formatting.py:464: AssertionError
Check warning on line 0 in xarray.tests.test_formatting
github-actions / Test Results
test__mapping_repr[50-40-30] (xarray.tests.test_formatting) failed
artifacts/Test results for Linux-3.9 bare-minimum/pytest.xml [took 0s]
Raw output
AssertionError: assert '<xarray.Data...ributes: (30)' == '<xarray.Data...ributes: (30)'
- <xarray.Dataset>
+ <xarray.Dataset> Size: 1kB
? ++++++++++
Dimensions: (coord0: 2, coord1: 2, coord2: 2, coord3: 2, coord4: 2,
coord5: 2, coord6: 2, coord7: 2, coord8: 2, coord9: 2,
coord10: 2, coord11: 2, coord12: 2, coord13: 2, coord14: 2,
coord15: 2, coord16: 2, coord17: 2, coord18: 2, coord19: 2,
coord20: 2, coord21: 2, coord22: 2, coord23: 2, coord24: 2,
coord25: 2, coord26: 2, coord27: 2, coord28: 2, coord29: 2,
coord30: 2, coord31: 2, coord32: 2, coord33: 2, coord34: 2,
coord35: 2, coord36: 2, coord37: 2, coord38: 2, coord39: 2)
Coordinates: (40)
Data variables: (40)
Attributes: (30)
display_max_rows = 50, n_vars = 40, n_attr = 30
@pytest.mark.parametrize(
"display_max_rows, n_vars, n_attr",
[(50, 40, 30), (35, 40, 30), (11, 40, 30), (1, 40, 30)],
)
def test__mapping_repr(display_max_rows, n_vars, n_attr) -> None:
long_name = "long_name"
a = defchararray.add(long_name, np.arange(0, n_vars).astype(str))
b = defchararray.add("attr_", np.arange(0, n_attr).astype(str))
c = defchararray.add("coord", np.arange(0, n_vars).astype(str))
attrs = {k: 2 for k in b}
coords = {_c: np.array([0, 1]) for _c in c}
data_vars = dict()
for v, _c in zip(a, coords.items()):
data_vars[v] = xr.DataArray(
name=v,
data=np.array([3, 4]),
dims=[_c[0]],
coords=dict([_c]),
)
ds = xr.Dataset(data_vars)
ds.attrs = attrs
with xr.set_options(display_max_rows=display_max_rows):
# Parse the data_vars print and show only data_vars rows:
summary = formatting.dataset_repr(ds).split("\n")
summary = [v for v in summary if long_name in v]
# The length should be less than or equal to display_max_rows:
len_summary = len(summary)
data_vars_print_size = min(display_max_rows, len_summary)
assert len_summary == data_vars_print_size
summary = formatting.data_vars_repr(ds.data_vars).split("\n")
summary = [v for v in summary if long_name in v]
# The length should be equal to the number of data variables
len_summary = len(summary)
assert len_summary == n_vars
summary = formatting.coords_repr(ds.coords).split("\n")
summary = [v for v in summary if "coord" in v]
# The length should be equal to the number of data variables
len_summary = len(summary)
assert len_summary == n_vars
with xr.set_options(
display_max_rows=display_max_rows,
display_expand_coords=False,
display_expand_data_vars=False,
display_expand_attrs=False,
):
actual = formatting.dataset_repr(ds)
col_width = formatting._calculate_col_width(ds.variables)
dims_start = formatting.pretty_print("Dimensions:", col_width)
dims_values = formatting.dim_summary_limited(
ds, col_width=col_width + 1, max_rows=display_max_rows
)
expected = f"""\
<xarray.Dataset>
{dims_start}({dims_values})
Coordinates: ({n_vars})
Data variables: ({n_vars})
Attributes: ({n_attr})"""
expected = dedent(expected)
> assert actual == expected
E AssertionError: assert '<xarray.Data...ributes: (30)' == '<xarray.Data...ributes: (30)'
E
E - <xarray.Dataset>
E + <xarray.Dataset> Size: 1kB
E ? ++++++++++
E Dimensions: (coord0: 2, coord1: 2, coord2: 2, coord3: 2, coord4: 2,
E coord5: 2, coord6: 2, coord7: 2, coord8: 2, coord9: 2,
E coord10: 2, coord11: 2, coord12: 2, coord13: 2, coord14: 2,
E coord15: 2, coord16: 2, coord17: 2, coord18: 2, coord19: 2,
E coord20: 2, coord21: 2, coord22: 2, coord23: 2, coord24: 2,
E coord25: 2, coord26: 2, coord27: 2, coord28: 2, coord29: 2,
E coord30: 2, coord31: 2, coord32: 2, coord33: 2, coord34: 2,
E coord35: 2, coord36: 2, coord37: 2, coord38: 2, coord39: 2)
E Coordinates: (40)
E Data variables: (40)
E Attributes: (30)
/home/runner/work/xarray/xarray/xarray/tests/test_formatting.py:718: AssertionError
Check warning on line 0 in xarray.tests.test_formatting
github-actions / Test Results
test__mapping_repr[35-40-30] (xarray.tests.test_formatting) failed
artifacts/Test results for Linux-3.9 bare-minimum/pytest.xml [took 0s]
Raw output
AssertionError: assert '<xarray.Data...ributes: (30)' == '<xarray.Data...ributes: (30)'
- <xarray.Dataset>
+ <xarray.Dataset> Size: 1kB
? ++++++++++
Dimensions: (coord0: 2, coord1: 2, coord2: 2, coord3: 2, coord4: 2,
coord5: 2, coord6: 2, coord7: 2, coord8: 2, coord9: 2,
coord10: 2, coord11: 2, coord12: 2, coord13: 2, coord14: 2,
coord15: 2, coord16: 2, coord17: 2, coord18: 2, coord19: 2,
coord20: 2, coord21: 2, coord22: 2, coord23: 2, coord24: 2,
coord25: 2, coord26: 2, coord27: 2, coord28: 2, coord29: 2,
coord30: 2, coord31: 2, coord32: 2, coord33: 2, coord34: 2,
coord35: 2, coord36: 2, coord37: 2, coord38: 2, coord39: 2)
Coordinates: (40)
Data variables: (40)
Attributes: (30)
display_max_rows = 35, n_vars = 40, n_attr = 30
@pytest.mark.parametrize(
"display_max_rows, n_vars, n_attr",
[(50, 40, 30), (35, 40, 30), (11, 40, 30), (1, 40, 30)],
)
def test__mapping_repr(display_max_rows, n_vars, n_attr) -> None:
long_name = "long_name"
a = defchararray.add(long_name, np.arange(0, n_vars).astype(str))
b = defchararray.add("attr_", np.arange(0, n_attr).astype(str))
c = defchararray.add("coord", np.arange(0, n_vars).astype(str))
attrs = {k: 2 for k in b}
coords = {_c: np.array([0, 1]) for _c in c}
data_vars = dict()
for v, _c in zip(a, coords.items()):
data_vars[v] = xr.DataArray(
name=v,
data=np.array([3, 4]),
dims=[_c[0]],
coords=dict([_c]),
)
ds = xr.Dataset(data_vars)
ds.attrs = attrs
with xr.set_options(display_max_rows=display_max_rows):
# Parse the data_vars print and show only data_vars rows:
summary = formatting.dataset_repr(ds).split("\n")
summary = [v for v in summary if long_name in v]
# The length should be less than or equal to display_max_rows:
len_summary = len(summary)
data_vars_print_size = min(display_max_rows, len_summary)
assert len_summary == data_vars_print_size
summary = formatting.data_vars_repr(ds.data_vars).split("\n")
summary = [v for v in summary if long_name in v]
# The length should be equal to the number of data variables
len_summary = len(summary)
assert len_summary == n_vars
summary = formatting.coords_repr(ds.coords).split("\n")
summary = [v for v in summary if "coord" in v]
# The length should be equal to the number of data variables
len_summary = len(summary)
assert len_summary == n_vars
with xr.set_options(
display_max_rows=display_max_rows,
display_expand_coords=False,
display_expand_data_vars=False,
display_expand_attrs=False,
):
actual = formatting.dataset_repr(ds)
col_width = formatting._calculate_col_width(ds.variables)
dims_start = formatting.pretty_print("Dimensions:", col_width)
dims_values = formatting.dim_summary_limited(
ds, col_width=col_width + 1, max_rows=display_max_rows
)
expected = f"""\
<xarray.Dataset>
{dims_start}({dims_values})
Coordinates: ({n_vars})
Data variables: ({n_vars})
Attributes: ({n_attr})"""
expected = dedent(expected)
> assert actual == expected
E AssertionError: assert '<xarray.Data...ributes: (30)' == '<xarray.Data...ributes: (30)'
E
E - <xarray.Dataset>
E + <xarray.Dataset> Size: 1kB
E ? ++++++++++
E Dimensions: (coord0: 2, coord1: 2, coord2: 2, coord3: 2, coord4: 2,
E coord5: 2, coord6: 2, coord7: 2, coord8: 2, coord9: 2,
E coord10: 2, coord11: 2, coord12: 2, coord13: 2, coord14: 2,
E coord15: 2, coord16: 2, coord17: 2, coord18: 2, coord19: 2,
E coord20: 2, coord21: 2, coord22: 2, coord23: 2, coord24: 2,
E coord25: 2, coord26: 2, coord27: 2, coord28: 2, coord29: 2,
E coord30: 2, coord31: 2, coord32: 2, coord33: 2, coord34: 2,
E coord35: 2, coord36: 2, coord37: 2, coord38: 2, coord39: 2)
E Coordinates: (40)
E Data variables: (40)
E Attributes: (30)
/home/runner/work/xarray/xarray/xarray/tests/test_formatting.py:718: AssertionError
Check warning on line 0 in xarray.tests.test_formatting
github-actions / Test Results
test__mapping_repr[11-40-30] (xarray.tests.test_formatting) failed
artifacts/Test results for Linux-3.9 bare-minimum/pytest.xml [took 0s]
Raw output
AssertionError: assert '<xarray.Data...ributes: (30)' == '<xarray.Data...ributes: (30)'
- <xarray.Dataset>
+ <xarray.Dataset> Size: 1kB
? ++++++++++
Dimensions: (coord0: 2, coord1: 2, coord2: 2, coord3: 2, coord4: 2,
coord5: 2, coord6: 2, coord7: 2, coord8: 2, coord9: 2,
coord10: 2, coord11: 2, coord12: 2, coord13: 2, coord14: 2,
coord15: 2, coord16: 2, coord17: 2, coord18: 2, coord19: 2,
coord20: 2, coord21: 2, coord22: 2, coord23: 2, coord24: 2,
coord25: 2, coord26: 2, coord27: 2, coord28: 2, coord29: 2,
coord30: 2, coord31: 2, coord32: 2, coord33: 2, coord34: 2,
coord35: 2, coord36: 2, coord37: 2, coord38: 2, coord39: 2)
Coordinates: (40)
Data variables: (40)
Attributes: (30)
display_max_rows = 11, n_vars = 40, n_attr = 30
@pytest.mark.parametrize(
"display_max_rows, n_vars, n_attr",
[(50, 40, 30), (35, 40, 30), (11, 40, 30), (1, 40, 30)],
)
def test__mapping_repr(display_max_rows, n_vars, n_attr) -> None:
long_name = "long_name"
a = defchararray.add(long_name, np.arange(0, n_vars).astype(str))
b = defchararray.add("attr_", np.arange(0, n_attr).astype(str))
c = defchararray.add("coord", np.arange(0, n_vars).astype(str))
attrs = {k: 2 for k in b}
coords = {_c: np.array([0, 1]) for _c in c}
data_vars = dict()
for v, _c in zip(a, coords.items()):
data_vars[v] = xr.DataArray(
name=v,
data=np.array([3, 4]),
dims=[_c[0]],
coords=dict([_c]),
)
ds = xr.Dataset(data_vars)
ds.attrs = attrs
with xr.set_options(display_max_rows=display_max_rows):
# Parse the data_vars print and show only data_vars rows:
summary = formatting.dataset_repr(ds).split("\n")
summary = [v for v in summary if long_name in v]
# The length should be less than or equal to display_max_rows:
len_summary = len(summary)
data_vars_print_size = min(display_max_rows, len_summary)
assert len_summary == data_vars_print_size
summary = formatting.data_vars_repr(ds.data_vars).split("\n")
summary = [v for v in summary if long_name in v]
# The length should be equal to the number of data variables
len_summary = len(summary)
assert len_summary == n_vars
summary = formatting.coords_repr(ds.coords).split("\n")
summary = [v for v in summary if "coord" in v]
# The length should be equal to the number of data variables
len_summary = len(summary)
assert len_summary == n_vars
with xr.set_options(
display_max_rows=display_max_rows,
display_expand_coords=False,
display_expand_data_vars=False,
display_expand_attrs=False,
):
actual = formatting.dataset_repr(ds)
col_width = formatting._calculate_col_width(ds.variables)
dims_start = formatting.pretty_print("Dimensions:", col_width)
dims_values = formatting.dim_summary_limited(
ds, col_width=col_width + 1, max_rows=display_max_rows
)
expected = f"""\
<xarray.Dataset>
{dims_start}({dims_values})
Coordinates: ({n_vars})
Data variables: ({n_vars})
Attributes: ({n_attr})"""
expected = dedent(expected)
> assert actual == expected
E AssertionError: assert '<xarray.Data...ributes: (30)' == '<xarray.Data...ributes: (30)'
E
E - <xarray.Dataset>
E + <xarray.Dataset> Size: 1kB
E ? ++++++++++
E Dimensions: (coord0: 2, coord1: 2, coord2: 2, coord3: 2, coord4: 2,
E coord5: 2, coord6: 2, coord7: 2, coord8: 2, coord9: 2,
E coord10: 2, coord11: 2, coord12: 2, coord13: 2, coord14: 2,
E coord15: 2, coord16: 2, coord17: 2, coord18: 2, coord19: 2,
E coord20: 2, coord21: 2, coord22: 2, coord23: 2, coord24: 2,
E coord25: 2, coord26: 2, coord27: 2, coord28: 2, coord29: 2,
E coord30: 2, coord31: 2, coord32: 2, coord33: 2, coord34: 2,
E coord35: 2, coord36: 2, coord37: 2, coord38: 2, coord39: 2)
E Coordinates: (40)
E Data variables: (40)
E Attributes: (30)
/home/runner/work/xarray/xarray/xarray/tests/test_formatting.py:718: AssertionError
Check warning on line 0 in xarray.tests.test_formatting
github-actions / Test Results
test__mapping_repr[1-40-30] (xarray.tests.test_formatting) failed
artifacts/Test results for Linux-3.9 bare-minimum/pytest.xml [took 0s]
Raw output
AssertionError: assert '<xarray.Data...ributes: (30)' == '<xarray.Data...ributes: (30)'
- <xarray.Dataset>
+ <xarray.Dataset> Size: 1kB
? ++++++++++
Dimensions: (coord0: 2, coord1: 2, coord2: 2, coord3: 2, coord4: 2,
...)
Coordinates: (40)
Data variables: (40)
Attributes: (30)
display_max_rows = 1, n_vars = 40, n_attr = 30
@pytest.mark.parametrize(
"display_max_rows, n_vars, n_attr",
[(50, 40, 30), (35, 40, 30), (11, 40, 30), (1, 40, 30)],
)
def test__mapping_repr(display_max_rows, n_vars, n_attr) -> None:
long_name = "long_name"
a = defchararray.add(long_name, np.arange(0, n_vars).astype(str))
b = defchararray.add("attr_", np.arange(0, n_attr).astype(str))
c = defchararray.add("coord", np.arange(0, n_vars).astype(str))
attrs = {k: 2 for k in b}
coords = {_c: np.array([0, 1]) for _c in c}
data_vars = dict()
for v, _c in zip(a, coords.items()):
data_vars[v] = xr.DataArray(
name=v,
data=np.array([3, 4]),
dims=[_c[0]],
coords=dict([_c]),
)
ds = xr.Dataset(data_vars)
ds.attrs = attrs
with xr.set_options(display_max_rows=display_max_rows):
# Parse the data_vars print and show only data_vars rows:
summary = formatting.dataset_repr(ds).split("\n")
summary = [v for v in summary if long_name in v]
# The length should be less than or equal to display_max_rows:
len_summary = len(summary)
data_vars_print_size = min(display_max_rows, len_summary)
assert len_summary == data_vars_print_size
summary = formatting.data_vars_repr(ds.data_vars).split("\n")
summary = [v for v in summary if long_name in v]
# The length should be equal to the number of data variables
len_summary = len(summary)
assert len_summary == n_vars
summary = formatting.coords_repr(ds.coords).split("\n")
summary = [v for v in summary if "coord" in v]
# The length should be equal to the number of data variables
len_summary = len(summary)
assert len_summary == n_vars
with xr.set_options(
display_max_rows=display_max_rows,
display_expand_coords=False,
display_expand_data_vars=False,
display_expand_attrs=False,
):
actual = formatting.dataset_repr(ds)
col_width = formatting._calculate_col_width(ds.variables)
dims_start = formatting.pretty_print("Dimensions:", col_width)
dims_values = formatting.dim_summary_limited(
ds, col_width=col_width + 1, max_rows=display_max_rows
)
expected = f"""\
<xarray.Dataset>
{dims_start}({dims_values})
Coordinates: ({n_vars})
Data variables: ({n_vars})
Attributes: ({n_attr})"""
expected = dedent(expected)
> assert actual == expected
E AssertionError: assert '<xarray.Data...ributes: (30)' == '<xarray.Data...ributes: (30)'
E
E - <xarray.Dataset>
E + <xarray.Dataset> Size: 1kB
E ? ++++++++++
E Dimensions: (coord0: 2, coord1: 2, coord2: 2, coord3: 2, coord4: 2,
E ...)
E Coordinates: (40)
E Data variables: (40)
E Attributes: (30)
/home/runner/work/xarray/xarray/xarray/tests/test_formatting.py:718: AssertionError
Check warning on line 0 in xarray.tests.test_variable.TestVariable
github-actions / Test Results
test_repr (xarray.tests.test_variable.TestVariable) failed
artifacts/Test results for Linux-3.9 bare-minimum/pytest.xml [took 0s]
Raw output
AssertionError: assert '<xarray.Vari...foo: bar' == '<xarray.Vari...foo: bar'
- <xarray.Variable (time: 2, x: 3)> Size: 48B
? ----------
+ <xarray.Variable (time: 2, x: 3)>
array([[1, 2, 3],
[4, 5, 6]])
Attributes:
foo: bar
self = <xarray.tests.test_variable.TestVariable object at 0x7fb83c527550>
def test_repr(self):
v = Variable(["time", "x"], [[1, 2, 3], [4, 5, 6]], {"foo": "bar"})
expected = dedent(
"""
<xarray.Variable (time: 2, x: 3)>
array([[1, 2, 3],
[4, 5, 6]])
Attributes:
foo: bar
"""
).strip()
> assert expected == repr(v)
E AssertionError: assert '<xarray.Vari...foo: bar' == '<xarray.Vari...foo: bar'
E
E - <xarray.Variable (time: 2, x: 3)> Size: 48B
E ? ----------
E + <xarray.Variable (time: 2, x: 3)>
E array([[1, 2, 3],
E [4, 5, 6]])
E Attributes:
E foo: bar
/home/runner/work/xarray/xarray/xarray/tests/test_variable.py:1240: AssertionError
Check notice on line 0 in .github
github-actions / Test Results
7357 skipped tests found (test 1 to 796)
There are 7357 skipped tests, see "Raw output" for the list of skipped tests 1 to 796.
Raw output
properties.test_encode_decode
properties.test_pandas_roundtrip
xarray.tests.test_accessor_dt ‑ test_calendar_cftime[360_day]
xarray.tests.test_accessor_dt ‑ test_calendar_cftime[365_day]
xarray.tests.test_accessor_dt ‑ test_calendar_cftime[366_day]
xarray.tests.test_accessor_dt ‑ test_calendar_cftime[all_leap]
xarray.tests.test_accessor_dt ‑ test_calendar_cftime[gregorian]
xarray.tests.test_accessor_dt ‑ test_calendar_cftime[julian]
xarray.tests.test_accessor_dt ‑ test_calendar_cftime[proleptic_gregorian]
xarray.tests.test_accessor_dt ‑ test_calendar_dask_cftime
xarray.tests.test_accessor_dt ‑ test_calendar_datetime64_3d_dask
xarray.tests.test_accessor_dt ‑ test_cftime_ceil_accessor[360_day-False]
xarray.tests.test_accessor_dt ‑ test_cftime_ceil_accessor[360_day-True]
xarray.tests.test_accessor_dt ‑ test_cftime_ceil_accessor[365_day-False]
xarray.tests.test_accessor_dt ‑ test_cftime_ceil_accessor[365_day-True]
xarray.tests.test_accessor_dt ‑ test_cftime_ceil_accessor[366_day-False]
xarray.tests.test_accessor_dt ‑ test_cftime_ceil_accessor[366_day-True]
xarray.tests.test_accessor_dt ‑ test_cftime_ceil_accessor[all_leap-False]
xarray.tests.test_accessor_dt ‑ test_cftime_ceil_accessor[all_leap-True]
xarray.tests.test_accessor_dt ‑ test_cftime_ceil_accessor[gregorian-False]
xarray.tests.test_accessor_dt ‑ test_cftime_ceil_accessor[gregorian-True]
xarray.tests.test_accessor_dt ‑ test_cftime_ceil_accessor[julian-False]
xarray.tests.test_accessor_dt ‑ test_cftime_ceil_accessor[julian-True]
xarray.tests.test_accessor_dt ‑ test_cftime_ceil_accessor[proleptic_gregorian-False]
xarray.tests.test_accessor_dt ‑ test_cftime_ceil_accessor[proleptic_gregorian-True]
xarray.tests.test_accessor_dt ‑ test_cftime_floor_accessor[360_day-False]
xarray.tests.test_accessor_dt ‑ test_cftime_floor_accessor[360_day-True]
xarray.tests.test_accessor_dt ‑ test_cftime_floor_accessor[365_day-False]
xarray.tests.test_accessor_dt ‑ test_cftime_floor_accessor[365_day-True]
xarray.tests.test_accessor_dt ‑ test_cftime_floor_accessor[366_day-False]
xarray.tests.test_accessor_dt ‑ test_cftime_floor_accessor[366_day-True]
xarray.tests.test_accessor_dt ‑ test_cftime_floor_accessor[all_leap-False]
xarray.tests.test_accessor_dt ‑ test_cftime_floor_accessor[all_leap-True]
xarray.tests.test_accessor_dt ‑ test_cftime_floor_accessor[gregorian-False]
xarray.tests.test_accessor_dt ‑ test_cftime_floor_accessor[gregorian-True]
xarray.tests.test_accessor_dt ‑ test_cftime_floor_accessor[julian-False]
xarray.tests.test_accessor_dt ‑ test_cftime_floor_accessor[julian-True]
xarray.tests.test_accessor_dt ‑ test_cftime_floor_accessor[proleptic_gregorian-False]
xarray.tests.test_accessor_dt ‑ test_cftime_floor_accessor[proleptic_gregorian-True]
xarray.tests.test_accessor_dt ‑ test_cftime_round_accessor[360_day-False]
xarray.tests.test_accessor_dt ‑ test_cftime_round_accessor[360_day-True]
xarray.tests.test_accessor_dt ‑ test_cftime_round_accessor[365_day-False]
xarray.tests.test_accessor_dt ‑ test_cftime_round_accessor[365_day-True]
xarray.tests.test_accessor_dt ‑ test_cftime_round_accessor[366_day-False]
xarray.tests.test_accessor_dt ‑ test_cftime_round_accessor[366_day-True]
xarray.tests.test_accessor_dt ‑ test_cftime_round_accessor[all_leap-False]
xarray.tests.test_accessor_dt ‑ test_cftime_round_accessor[all_leap-True]
xarray.tests.test_accessor_dt ‑ test_cftime_round_accessor[gregorian-False]
xarray.tests.test_accessor_dt ‑ test_cftime_round_accessor[gregorian-True]
xarray.tests.test_accessor_dt ‑ test_cftime_round_accessor[julian-False]
xarray.tests.test_accessor_dt ‑ test_cftime_round_accessor[julian-True]
xarray.tests.test_accessor_dt ‑ test_cftime_round_accessor[proleptic_gregorian-False]
xarray.tests.test_accessor_dt ‑ test_cftime_round_accessor[proleptic_gregorian-True]
xarray.tests.test_accessor_dt ‑ test_cftime_strftime_access[360_day]
xarray.tests.test_accessor_dt ‑ test_cftime_strftime_access[365_day]
xarray.tests.test_accessor_dt ‑ test_cftime_strftime_access[366_day]
xarray.tests.test_accessor_dt ‑ test_cftime_strftime_access[all_leap]
xarray.tests.test_accessor_dt ‑ test_cftime_strftime_access[gregorian]
xarray.tests.test_accessor_dt ‑ test_cftime_strftime_access[julian]
xarray.tests.test_accessor_dt ‑ test_cftime_strftime_access[proleptic_gregorian]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[360_day-day]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[360_day-dayofweek]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[360_day-dayofyear]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[360_day-hour]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[360_day-month]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[360_day-year]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[365_day-day]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[365_day-dayofweek]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[365_day-dayofyear]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[365_day-hour]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[365_day-month]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[365_day-year]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[366_day-day]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[366_day-dayofweek]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[366_day-dayofyear]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[366_day-hour]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[366_day-month]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[366_day-year]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[all_leap-day]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[all_leap-dayofweek]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[all_leap-dayofyear]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[all_leap-hour]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[all_leap-month]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[all_leap-year]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[gregorian-day]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[gregorian-dayofweek]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[gregorian-dayofyear]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[gregorian-hour]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[gregorian-month]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[gregorian-year]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[julian-day]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[julian-dayofweek]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[julian-dayofyear]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[julian-hour]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[julian-month]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[julian-year]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[proleptic_gregorian-day]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[proleptic_gregorian-dayofweek]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[proleptic_gregorian-dayofyear]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[proleptic_gregorian-hour]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[proleptic_gregorian-month]
xarray.tests.test_accessor_dt ‑ test_dask_field_access[proleptic_gregorian-year]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[360_day-day]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[360_day-dayofweek]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[360_day-dayofyear]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[360_day-hour]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[360_day-month]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[360_day-year]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[365_day-day]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[365_day-dayofweek]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[365_day-dayofyear]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[365_day-hour]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[365_day-month]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[365_day-year]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[366_day-day]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[366_day-dayofweek]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[366_day-dayofyear]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[366_day-hour]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[366_day-month]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[366_day-year]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[all_leap-day]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[all_leap-dayofweek]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[all_leap-dayofyear]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[all_leap-hour]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[all_leap-month]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[all_leap-year]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[gregorian-day]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[gregorian-dayofweek]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[gregorian-dayofyear]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[gregorian-hour]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[gregorian-month]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[gregorian-year]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[julian-day]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[julian-dayofweek]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[julian-dayofyear]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[julian-hour]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[julian-month]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[julian-year]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[proleptic_gregorian-day]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[proleptic_gregorian-dayofweek]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[proleptic_gregorian-dayofyear]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[proleptic_gregorian-hour]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[proleptic_gregorian-month]
xarray.tests.test_accessor_dt ‑ test_dask_field_access_1d[proleptic_gregorian-year]
xarray.tests.test_accessor_dt ‑ test_date_cftime[360_day]
xarray.tests.test_accessor_dt ‑ test_date_cftime[365_day]
xarray.tests.test_accessor_dt ‑ test_date_cftime[366_day]
xarray.tests.test_accessor_dt ‑ test_date_cftime[all_leap]
xarray.tests.test_accessor_dt ‑ test_date_cftime[gregorian]
xarray.tests.test_accessor_dt ‑ test_date_cftime[julian]
xarray.tests.test_accessor_dt ‑ test_date_cftime[proleptic_gregorian]
xarray.tests.test_accessor_dt ‑ test_field_access[360_day-day]
xarray.tests.test_accessor_dt ‑ test_field_access[360_day-dayofweek]
xarray.tests.test_accessor_dt ‑ test_field_access[360_day-dayofyear]
xarray.tests.test_accessor_dt ‑ test_field_access[360_day-hour]
xarray.tests.test_accessor_dt ‑ test_field_access[360_day-month]
xarray.tests.test_accessor_dt ‑ test_field_access[360_day-year]
xarray.tests.test_accessor_dt ‑ test_field_access[365_day-day]
xarray.tests.test_accessor_dt ‑ test_field_access[365_day-dayofweek]
xarray.tests.test_accessor_dt ‑ test_field_access[365_day-dayofyear]
xarray.tests.test_accessor_dt ‑ test_field_access[365_day-hour]
xarray.tests.test_accessor_dt ‑ test_field_access[365_day-month]
xarray.tests.test_accessor_dt ‑ test_field_access[365_day-year]
xarray.tests.test_accessor_dt ‑ test_field_access[366_day-day]
xarray.tests.test_accessor_dt ‑ test_field_access[366_day-dayofweek]
xarray.tests.test_accessor_dt ‑ test_field_access[366_day-dayofyear]
xarray.tests.test_accessor_dt ‑ test_field_access[366_day-hour]
xarray.tests.test_accessor_dt ‑ test_field_access[366_day-month]
xarray.tests.test_accessor_dt ‑ test_field_access[366_day-year]
xarray.tests.test_accessor_dt ‑ test_field_access[all_leap-day]
xarray.tests.test_accessor_dt ‑ test_field_access[all_leap-dayofweek]
xarray.tests.test_accessor_dt ‑ test_field_access[all_leap-dayofyear]
xarray.tests.test_accessor_dt ‑ test_field_access[all_leap-hour]
xarray.tests.test_accessor_dt ‑ test_field_access[all_leap-month]
xarray.tests.test_accessor_dt ‑ test_field_access[all_leap-year]
xarray.tests.test_accessor_dt ‑ test_field_access[gregorian-day]
xarray.tests.test_accessor_dt ‑ test_field_access[gregorian-dayofweek]
xarray.tests.test_accessor_dt ‑ test_field_access[gregorian-dayofyear]
xarray.tests.test_accessor_dt ‑ test_field_access[gregorian-hour]
xarray.tests.test_accessor_dt ‑ test_field_access[gregorian-month]
xarray.tests.test_accessor_dt ‑ test_field_access[gregorian-year]
xarray.tests.test_accessor_dt ‑ test_field_access[julian-day]
xarray.tests.test_accessor_dt ‑ test_field_access[julian-dayofweek]
xarray.tests.test_accessor_dt ‑ test_field_access[julian-dayofyear]
xarray.tests.test_accessor_dt ‑ test_field_access[julian-hour]
xarray.tests.test_accessor_dt ‑ test_field_access[julian-month]
xarray.tests.test_accessor_dt ‑ test_field_access[julian-year]
xarray.tests.test_accessor_dt ‑ test_field_access[proleptic_gregorian-day]
xarray.tests.test_accessor_dt ‑ test_field_access[proleptic_gregorian-dayofweek]
xarray.tests.test_accessor_dt ‑ test_field_access[proleptic_gregorian-dayofyear]
xarray.tests.test_accessor_dt ‑ test_field_access[proleptic_gregorian-hour]
xarray.tests.test_accessor_dt ‑ test_field_access[proleptic_gregorian-month]
xarray.tests.test_accessor_dt ‑ test_field_access[proleptic_gregorian-year]
xarray.tests.test_accessor_dt ‑ test_isocalendar_cftime[360_day]
xarray.tests.test_accessor_dt ‑ test_isocalendar_cftime[365_day]
xarray.tests.test_accessor_dt ‑ test_isocalendar_cftime[366_day]
xarray.tests.test_accessor_dt ‑ test_isocalendar_cftime[all_leap]
xarray.tests.test_accessor_dt ‑ test_isocalendar_cftime[gregorian]
xarray.tests.test_accessor_dt ‑ test_isocalendar_cftime[julian]
xarray.tests.test_accessor_dt ‑ test_isocalendar_cftime[proleptic_gregorian]
xarray.tests.test_accessor_dt ‑ test_seasons[360_day]
xarray.tests.test_accessor_dt ‑ test_seasons[365_day]
xarray.tests.test_accessor_dt ‑ test_seasons[366_day]
xarray.tests.test_accessor_dt ‑ test_seasons[all_leap]
xarray.tests.test_accessor_dt ‑ test_seasons[gregorian]
xarray.tests.test_accessor_dt ‑ test_seasons[julian]
xarray.tests.test_accessor_dt ‑ test_seasons[proleptic_gregorian]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_accessor_method[ceil-D]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_accessor_method[floor-D]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_accessor_method[round-D]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_accessor_method[strftime-%Y-%m-%d %H:%M:%S]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[date]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[day]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[dayofweek]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[dayofyear]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[hour]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[is_leap_year]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[is_month_end]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[is_month_start]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[is_quarter_end]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[is_quarter_start]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[is_year_end]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[is_year_start]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[microsecond]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[minute]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[month]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[nanosecond]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[quarter]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[second]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[time]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[week]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[weekday]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[weekofyear]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_dask_field_access[year]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_isocalendar_dask[week]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_isocalendar_dask[weekday]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_isocalendar_dask[year]
xarray.tests.test_accessor_dt.TestTimedeltaAccessor ‑ test_dask_accessor_method[ceil-D]
xarray.tests.test_accessor_dt.TestTimedeltaAccessor ‑ test_dask_accessor_method[floor-D]
xarray.tests.test_accessor_dt.TestTimedeltaAccessor ‑ test_dask_accessor_method[round-D]
xarray.tests.test_accessor_dt.TestTimedeltaAccessor ‑ test_dask_field_access[days]
xarray.tests.test_accessor_dt.TestTimedeltaAccessor ‑ test_dask_field_access[microseconds]
xarray.tests.test_accessor_dt.TestTimedeltaAccessor ‑ test_dask_field_access[nanoseconds]
xarray.tests.test_accessor_dt.TestTimedeltaAccessor ‑ test_dask_field_access[seconds]
xarray.tests.test_accessor_str ‑ test_dask
xarray.tests.test_assertions ‑ test_assert_duckarray_equal[both arrays-dask]
xarray.tests.test_assertions ‑ test_assert_duckarray_equal[both arrays-pint]
xarray.tests.test_assertions ‑ test_assert_duckarray_equal[first scalar-dask]
xarray.tests.test_assertions ‑ test_assert_duckarray_equal[first scalar-pint]
xarray.tests.test_assertions ‑ test_assert_duckarray_equal[second scalar-dask]
xarray.tests.test_assertions ‑ test_assert_duckarray_equal[second scalar-pint]
xarray.tests.test_assertions ‑ test_assert_duckarray_equal_failing[both arrays-dask]
xarray.tests.test_assertions ‑ test_assert_duckarray_equal_failing[both arrays-pint]
xarray.tests.test_assertions ‑ test_assert_duckarray_equal_failing[first scalar-dask]
xarray.tests.test_assertions ‑ test_assert_duckarray_equal_failing[first scalar-pint]
xarray.tests.test_assertions ‑ test_assert_duckarray_equal_failing[second scalar-dask]
xarray.tests.test_assertions ‑ test_assert_duckarray_equal_failing[second scalar-pint]
xarray.tests.test_backends ‑ test_chunking_consintency[-1]
xarray.tests.test_backends ‑ test_chunking_consintency[auto]
xarray.tests.test_backends ‑ test_chunking_consintency[chunks2]
xarray.tests.test_backends ‑ test_chunking_consintency[chunks3]
xarray.tests.test_backends ‑ test_chunking_consintency[chunks4]
xarray.tests.test_backends ‑ test_chunking_consintency[chunks5]
xarray.tests.test_backends ‑ test_encode_zarr_attr_value
xarray.tests.test_backends ‑ test_extract_zarr_variable_encoding
xarray.tests.test_backends ‑ test_h5netcdf_entrypoint
xarray.tests.test_backends ‑ test_load_single_value_h5netcdf
xarray.tests.test_backends ‑ test_netcdf4_entrypoint
xarray.tests.test_backends ‑ test_no_warning_from_dask_effective_get
xarray.tests.test_backends ‑ test_open_dataset_chunking_zarr[-1]
xarray.tests.test_backends ‑ test_open_dataset_chunking_zarr[auto]
xarray.tests.test_backends ‑ test_open_dataset_chunking_zarr[chunks2]
xarray.tests.test_backends ‑ test_open_dataset_chunking_zarr[chunks3]
xarray.tests.test_backends ‑ test_open_dataset_chunking_zarr[chunks4]
xarray.tests.test_backends ‑ test_open_dataset_chunking_zarr[chunks5]
xarray.tests.test_backends ‑ test_open_fsspec
xarray.tests.test_backends ‑ test_open_mfdataset_can_open_path_objects
xarray.tests.test_backends ‑ test_open_mfdataset_list_attr
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[h5netcdf-1-False-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[h5netcdf-1-False-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[h5netcdf-1-False-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[h5netcdf-1-False-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[h5netcdf-1-True-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[h5netcdf-1-True-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[h5netcdf-1-True-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[h5netcdf-1-True-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[h5netcdf-20-False-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[h5netcdf-20-False-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[h5netcdf-20-False-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[h5netcdf-20-False-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[h5netcdf-20-True-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[h5netcdf-20-True-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[h5netcdf-20-True-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[h5netcdf-20-True-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[netcdf4-1-False-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[netcdf4-1-False-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[netcdf4-1-False-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[netcdf4-1-False-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[netcdf4-1-True-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[netcdf4-1-True-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[netcdf4-1-True-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[netcdf4-1-True-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[netcdf4-20-False-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[netcdf4-20-False-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[netcdf4-20-False-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[netcdf4-20-False-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[netcdf4-20-True-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[netcdf4-20-True-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[netcdf4-20-True-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[netcdf4-20-True-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[pynio-1-False-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[pynio-1-False-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[pynio-1-False-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[pynio-1-False-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[pynio-1-True-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[pynio-1-True-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[pynio-1-True-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[pynio-1-True-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[pynio-20-False-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[pynio-20-False-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[pynio-20-False-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[pynio-20-False-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[pynio-20-True-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[pynio-20-True-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[pynio-20-True-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[pynio-20-True-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[scipy-1-False-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[scipy-1-False-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[scipy-1-False-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[scipy-1-False-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[scipy-1-True-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[scipy-1-True-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[scipy-1-True-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[scipy-1-True-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[scipy-20-False-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[scipy-20-False-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[scipy-20-False-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[scipy-20-False-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[scipy-20-True-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[scipy-20-True-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[scipy-20-True-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[scipy-20-True-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[zarr-1-False-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[zarr-1-False-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[zarr-1-False-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[zarr-1-False-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[zarr-1-True-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[zarr-1-True-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[zarr-1-True-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[zarr-1-True-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[zarr-20-False-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[zarr-20-False-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[zarr-20-False-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[zarr-20-False-None-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[zarr-20-True-5-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[zarr-20-True-5-None]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[zarr-20-True-None-5]
xarray.tests.test_backends ‑ test_open_mfdataset_manyfiles[zarr-20-True-None-None]
xarray.tests.test_backends ‑ test_pickle_open_mfdataset_dataset
xarray.tests.test_backends ‑ test_scipy_entrypoint
xarray.tests.test_backends ‑ test_source_encoding_always_present
xarray.tests.test_backends ‑ test_source_encoding_always_present_with_pathlib
xarray.tests.test_backends ‑ test_use_cftime_false_nonstandard_calendar[1500-360_day]
xarray.tests.test_backends ‑ test_use_cftime_false_nonstandard_calendar[1500-365_day]
xarray.tests.test_backends ‑ test_use_cftime_false_nonstandard_calendar[1500-366_day]
xarray.tests.test_backends ‑ test_use_cftime_false_nonstandard_calendar[1500-all_leap]
xarray.tests.test_backends ‑ test_use_cftime_false_nonstandard_calendar[1500-julian]
xarray.tests.test_backends ‑ test_use_cftime_false_nonstandard_calendar[1500-noleap]
xarray.tests.test_backends ‑ test_use_cftime_false_nonstandard_calendar[2000-360_day]
xarray.tests.test_backends ‑ test_use_cftime_false_nonstandard_calendar[2000-365_day]
xarray.tests.test_backends ‑ test_use_cftime_false_nonstandard_calendar[2000-366_day]
xarray.tests.test_backends ‑ test_use_cftime_false_nonstandard_calendar[2000-all_leap]
xarray.tests.test_backends ‑ test_use_cftime_false_nonstandard_calendar[2000-julian]
xarray.tests.test_backends ‑ test_use_cftime_false_nonstandard_calendar[2000-noleap]
xarray.tests.test_backends ‑ test_use_cftime_false_nonstandard_calendar[2500-360_day]
xarray.tests.test_backends ‑ test_use_cftime_false_nonstandard_calendar[2500-365_day]
xarray.tests.test_backends ‑ test_use_cftime_false_nonstandard_calendar[2500-366_day]
xarray.tests.test_backends ‑ test_use_cftime_false_nonstandard_calendar[2500-all_leap]
xarray.tests.test_backends ‑ test_use_cftime_false_nonstandard_calendar[2500-julian]
xarray.tests.test_backends ‑ test_use_cftime_false_nonstandard_calendar[2500-noleap]
xarray.tests.test_backends ‑ test_use_cftime_false_standard_calendar_in_range[gregorian]
xarray.tests.test_backends ‑ test_use_cftime_false_standard_calendar_in_range[proleptic_gregorian]
xarray.tests.test_backends ‑ test_use_cftime_false_standard_calendar_in_range[standard]
xarray.tests.test_backends ‑ test_use_cftime_false_standard_calendar_out_of_range[1500-gregorian]
xarray.tests.test_backends ‑ test_use_cftime_false_standard_calendar_out_of_range[1500-proleptic_gregorian]
xarray.tests.test_backends ‑ test_use_cftime_false_standard_calendar_out_of_range[1500-standard]
xarray.tests.test_backends ‑ test_use_cftime_false_standard_calendar_out_of_range[2500-gregorian]
xarray.tests.test_backends ‑ test_use_cftime_false_standard_calendar_out_of_range[2500-proleptic_gregorian]
xarray.tests.test_backends ‑ test_use_cftime_false_standard_calendar_out_of_range[2500-standard]
xarray.tests.test_backends ‑ test_use_cftime_standard_calendar_default_in_range[gregorian]
xarray.tests.test_backends ‑ test_use_cftime_standard_calendar_default_in_range[proleptic_gregorian]
xarray.tests.test_backends ‑ test_use_cftime_standard_calendar_default_in_range[standard]
xarray.tests.test_backends ‑ test_use_cftime_standard_calendar_default_out_of_range[1500-gregorian]
xarray.tests.test_backends ‑ test_use_cftime_standard_calendar_default_out_of_range[1500-proleptic_gregorian]
xarray.tests.test_backends ‑ test_use_cftime_standard_calendar_default_out_of_range[1500-standard]
xarray.tests.test_backends ‑ test_use_cftime_standard_calendar_default_out_of_range[2500-gregorian]
xarray.tests.test_backends ‑ test_use_cftime_standard_calendar_default_out_of_range[2500-proleptic_gregorian]
xarray.tests.test_backends ‑ test_use_cftime_standard_calendar_default_out_of_range[2500-standard]
xarray.tests.test_backends ‑ test_use_cftime_true[1500-360_day]
xarray.tests.test_backends ‑ test_use_cftime_true[1500-365_day]
xarray.tests.test_backends ‑ test_use_cftime_true[1500-366_day]
xarray.tests.test_backends ‑ test_use_cftime_true[1500-all_leap]
xarray.tests.test_backends ‑ test_use_cftime_true[1500-gregorian]
xarray.tests.test_backends ‑ test_use_cftime_true[1500-julian]
xarray.tests.test_backends ‑ test_use_cftime_true[1500-noleap]
xarray.tests.test_backends ‑ test_use_cftime_true[1500-proleptic_gregorian]
xarray.tests.test_backends ‑ test_use_cftime_true[1500-standard]
xarray.tests.test_backends ‑ test_use_cftime_true[2000-360_day]
xarray.tests.test_backends ‑ test_use_cftime_true[2000-365_day]
xarray.tests.test_backends ‑ test_use_cftime_true[2000-366_day]
xarray.tests.test_backends ‑ test_use_cftime_true[2000-all_leap]
xarray.tests.test_backends ‑ test_use_cftime_true[2000-gregorian]
xarray.tests.test_backends ‑ test_use_cftime_true[2000-julian]
xarray.tests.test_backends ‑ test_use_cftime_true[2000-noleap]
xarray.tests.test_backends ‑ test_use_cftime_true[2000-proleptic_gregorian]
xarray.tests.test_backends ‑ test_use_cftime_true[2000-standard]
xarray.tests.test_backends ‑ test_use_cftime_true[2500-360_day]
xarray.tests.test_backends ‑ test_use_cftime_true[2500-365_day]
xarray.tests.test_backends ‑ test_use_cftime_true[2500-366_day]
xarray.tests.test_backends ‑ test_use_cftime_true[2500-all_leap]
xarray.tests.test_backends ‑ test_use_cftime_true[2500-gregorian]
xarray.tests.test_backends ‑ test_use_cftime_true[2500-julian]
xarray.tests.test_backends ‑ test_use_cftime_true[2500-noleap]
xarray.tests.test_backends ‑ test_use_cftime_true[2500-proleptic_gregorian]
xarray.tests.test_backends ‑ test_use_cftime_true[2500-standard]
xarray.tests.test_backends ‑ test_write_file_from_np_str[str]
xarray.tests.test_backends ‑ test_write_file_from_np_str[str_]
xarray.tests.test_backends ‑ test_zarr_closing_internal_zip_store
xarray.tests.test_backends ‑ test_zarr_region
xarray.tests.test_backends ‑ test_zarr_storage_options
xarray.tests.test_backends.TestDask ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestDask ‑ test_attrs_mfdataset
xarray.tests.test_backends.TestDask ‑ test_dask_roundtrip
xarray.tests.test_backends.TestDask ‑ test_dataarray_compute
xarray.tests.test_backends.TestDask ‑ test_dataset_caching
xarray.tests.test_backends.TestDask ‑ test_dataset_compute
xarray.tests.test_backends.TestDask ‑ test_deterministic_names
xarray.tests.test_backends.TestDask ‑ test_dropna
xarray.tests.test_backends.TestDask ‑ test_encoding_mfdataset
xarray.tests.test_backends.TestDask ‑ test_inline_array
xarray.tests.test_backends.TestDask ‑ test_isel_dataarray
xarray.tests.test_backends.TestDask ‑ test_load
xarray.tests.test_backends.TestDask ‑ test_load_dataarray
xarray.tests.test_backends.TestDask ‑ test_load_dataset
xarray.tests.test_backends.TestDask ‑ test_ondisk_after_print
xarray.tests.test_backends.TestDask ‑ test_open_and_do_math
xarray.tests.test_backends.TestDask ‑ test_open_dataset
xarray.tests.test_backends.TestDask ‑ test_open_mfdataset
xarray.tests.test_backends.TestDask ‑ test_open_mfdataset_2
xarray.tests.test_backends.TestDask ‑ test_open_mfdataset_2d
xarray.tests.test_backends.TestDask ‑ test_open_mfdataset_2d_pathlib
xarray.tests.test_backends.TestDask ‑ test_open_mfdataset_attrs_file
xarray.tests.test_backends.TestDask ‑ test_open_mfdataset_attrs_file_path
xarray.tests.test_backends.TestDask ‑ test_open_mfdataset_auto_combine
xarray.tests.test_backends.TestDask ‑ test_open_mfdataset_concat_dim_default_none
xarray.tests.test_backends.TestDask ‑ test_open_mfdataset_concat_dim_none
xarray.tests.test_backends.TestDask ‑ test_open_mfdataset_no_files
xarray.tests.test_backends.TestDask ‑ test_open_mfdataset_pathlib
xarray.tests.test_backends.TestDask ‑ test_open_mfdataset_raise_on_bad_combine_args
xarray.tests.test_backends.TestDask ‑ test_open_multi_dataset
xarray.tests.test_backends.TestDask ‑ test_open_single_dataset
xarray.tests.test_backends.TestDask ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestDask ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestDask ‑ test_pickle
xarray.tests.test_backends.TestDask ‑ test_pickle_dataarray
xarray.tests.test_backends.TestDask ‑ test_preprocess_mfdataset
xarray.tests.test_backends.TestDask ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestDask ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestDask ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestDask ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestDask ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestDask ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestDask ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestDask ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestDask ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestDask ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestDask ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestDask ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestDask ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestDask ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestDask ‑ test_save_mfdataset_compute_false_roundtrip
xarray.tests.test_backends.TestDask ‑ test_save_mfdataset_invalid
xarray.tests.test_backends.TestDask ‑ test_save_mfdataset_invalid_dataarray
xarray.tests.test_backends.TestDask ‑ test_save_mfdataset_pass_kwargs
xarray.tests.test_backends.TestDask ‑ test_save_mfdataset_pathlib_roundtrip
xarray.tests.test_backends.TestDask ‑ test_save_mfdataset_roundtrip
xarray.tests.test_backends.TestDask ‑ test_vectorized_indexing
xarray.tests.test_backends.TestDask ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestDask ‑ test_write_store
xarray.tests.test_backends.TestDask ‑ test_zero_dimensional_variable
xarray.tests.test_backends.TestDataArrayToNetCDF ‑ test_dataarray_to_netcdf_coord_name_clash
xarray.tests.test_backends.TestDataArrayToNetCDF ‑ test_dataarray_to_netcdf_no_name
xarray.tests.test_backends.TestDataArrayToNetCDF ‑ test_dataarray_to_netcdf_no_name_pathlib
xarray.tests.test_backends.TestDataArrayToNetCDF ‑ test_dataarray_to_netcdf_return_bytes
xarray.tests.test_backends.TestDataArrayToNetCDF ‑ test_dataarray_to_netcdf_with_name
xarray.tests.test_backends.TestDataArrayToNetCDF ‑ test_open_dataarray_options
xarray.tests.test_backends.TestDataArrayToZarr ‑ test_dataarray_to_zarr_compute_false[Dict]
xarray.tests.test_backends.TestDataArrayToZarr ‑ test_dataarray_to_zarr_compute_false[ZipStore]
xarray.tests.test_backends.TestDataArrayToZarr ‑ test_dataarray_to_zarr_compute_false[tmp_path]
xarray.tests.test_backends.TestDataArrayToZarr ‑ test_dataarray_to_zarr_coord_name_clash[Dict]
xarray.tests.test_backends.TestDataArrayToZarr ‑ test_dataarray_to_zarr_coord_name_clash[ZipStore]
xarray.tests.test_backends.TestDataArrayToZarr ‑ test_dataarray_to_zarr_coord_name_clash[tmp_path]
xarray.tests.test_backends.TestDataArrayToZarr ‑ test_dataarray_to_zarr_no_name[Dict]
xarray.tests.test_backends.TestDataArrayToZarr ‑ test_dataarray_to_zarr_no_name[ZipStore]
xarray.tests.test_backends.TestDataArrayToZarr ‑ test_dataarray_to_zarr_no_name[tmp_path]
xarray.tests.test_backends.TestDataArrayToZarr ‑ test_dataarray_to_zarr_with_name[Dict]
xarray.tests.test_backends.TestDataArrayToZarr ‑ test_dataarray_to_zarr_with_name[ZipStore]
xarray.tests.test_backends.TestDataArrayToZarr ‑ test_dataarray_to_zarr_with_name[tmp_path]
xarray.tests.test_backends.TestDataArrayToZarr ‑ test_open_dataarray_options[Dict]
xarray.tests.test_backends.TestDataArrayToZarr ‑ test_open_dataarray_options[ZipStore]
xarray.tests.test_backends.TestDataArrayToZarr ‑ test_open_dataarray_options[tmp_path]
xarray.tests.test_backends.TestEncodingInvalid ‑ test_extract_nc4_variable_encoding_netcdf4
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_append_overwrite_values
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_append_with_invalid_dim_raises
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_append_write
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_coordinates_encoding
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_cross_engine_read_write_netcdf3
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_dataset_caching
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_dataset_compute
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_default_fill_value
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_dropna
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_dtype_coercion_error
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_encoding_kwarg
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_encoding_kwarg_dates
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_encoding_same_dtype
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_encoding_unlimited_dims
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_engine
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_explicitly_omit_fill_value
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_invalid_dataarray_names_raise
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_isel_dataarray
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_load
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_multiindex_not_implemented
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_ondisk_after_print
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_pickle
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_pickle_dataarray
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_endian
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_vectorized_indexing
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_write_store
xarray.tests.test_backends.TestGenericNetCDFData ‑ test_zero_dimensional_variable
xarray.tests.test_backends.TestH5NetCDFAlreadyOpen ‑ test_deepcopy
xarray.tests.test_backends.TestH5NetCDFAlreadyOpen ‑ test_open_dataset_group
xarray.tests.test_backends.TestH5NetCDFData ‑ test_0dimensional_variable
xarray.tests.test_backends.TestH5NetCDFData ‑ test_append_overwrite_values
xarray.tests.test_backends.TestH5NetCDFData ‑ test_append_with_invalid_dim_raises
xarray.tests.test_backends.TestH5NetCDFData ‑ test_append_write
xarray.tests.test_backends.TestH5NetCDFData ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestH5NetCDFData ‑ test_auto_chunking_is_based_on_disk_chunk_sizes
xarray.tests.test_backends.TestH5NetCDFData ‑ test_base_chunking_uses_disk_chunk_sizes
xarray.tests.test_backends.TestH5NetCDFData ‑ test_complex
xarray.tests.test_backends.TestH5NetCDFData ‑ test_complex_error[False]
xarray.tests.test_backends.TestH5NetCDFData ‑ test_complex_error[None]
xarray.tests.test_backends.TestH5NetCDFData ‑ test_compression_check_encoding_h5py
xarray.tests.test_backends.TestH5NetCDFData ‑ test_compression_encoding_h5py
xarray.tests.test_backends.TestH5NetCDFData ‑ test_compression_encoding_legacy
xarray.tests.test_backends.TestH5NetCDFData ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_backends.TestH5NetCDFData ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_backends.TestH5NetCDFData ‑ test_coordinates_encoding
xarray.tests.test_backends.TestH5NetCDFData ‑ test_cross_engine_read_write_netcdf4
xarray.tests.test_backends.TestH5NetCDFData ‑ test_dataset_caching
xarray.tests.test_backends.TestH5NetCDFData ‑ test_dataset_compute
xarray.tests.test_backends.TestH5NetCDFData ‑ test_default_fill_value
xarray.tests.test_backends.TestH5NetCDFData ‑ test_default_to_char_arrays
xarray.tests.test_backends.TestH5NetCDFData ‑ test_dropna
xarray.tests.test_backends.TestH5NetCDFData ‑ test_dump_and_open_encodings
xarray.tests.test_backends.TestH5NetCDFData ‑ test_dump_encodings
xarray.tests.test_backends.TestH5NetCDFData ‑ test_dump_encodings_h5py
xarray.tests.test_backends.TestH5NetCDFData ‑ test_encoding_chunksizes_unlimited
xarray.tests.test_backends.TestH5NetCDFData ‑ test_encoding_enum__error_multiple_variable_with_changing_enum
xarray.tests.test_backends.TestH5NetCDFData ‑ test_encoding_enum__multiple_variable_with_enum
xarray.tests.test_backends.TestH5NetCDFData ‑ test_encoding_enum__no_fill_value
xarray.tests.test_backends.TestH5NetCDFData ‑ test_encoding_kwarg
xarray.tests.test_backends.TestH5NetCDFData ‑ test_encoding_kwarg_compression
xarray.tests.test_backends.TestH5NetCDFData ‑ test_encoding_kwarg_dates
xarray.tests.test_backends.TestH5NetCDFData ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_backends.TestH5NetCDFData ‑ test_encoding_kwarg_vlen_string[input_strings0-True]
xarray.tests.test_backends.TestH5NetCDFData ‑ test_encoding_kwarg_vlen_string[input_strings1-False]
xarray.tests.test_backends.TestH5NetCDFData ‑ test_encoding_kwarg_vlen_string[input_strings2-False]
xarray.tests.test_backends.TestH5NetCDFData ‑ test_encoding_same_dtype
xarray.tests.test_backends.TestH5NetCDFData ‑ test_encoding_unlimited_dims
xarray.tests.test_backends.TestH5NetCDFData ‑ test_explicitly_omit_fill_value
xarray.tests.test_backends.TestH5NetCDFData ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_backends.TestH5NetCDFData ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_backends.TestH5NetCDFData ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_backends.TestH5NetCDFData ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_backends.TestH5NetCDFData ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_backends.TestH5NetCDFData ‑ test_invalid_dataarray_names_raise
xarray.tests.test_backends.TestH5NetCDFData ‑ test_isel_dataarray
xarray.tests.test_backends.TestH5NetCDFData ‑ test_keep_chunksizes_if_no_original_shape
xarray.tests.test_backends.TestH5NetCDFData ‑ test_load
xarray.tests.test_backends.TestH5NetCDFData ‑ test_mask_and_scale
xarray.tests.test_backends.TestH5NetCDFData ‑ test_multiindex_not_implemented
xarray.tests.test_backends.TestH5NetCDFData ‑ test_numpy_bool_
xarray.tests.test_backends.TestH5NetCDFData ‑ test_ondisk_after_print
xarray.tests.test_backends.TestH5NetCDFData ‑ test_open_encodings
xarray.tests.test_backends.TestH5NetCDFData ‑ test_open_group
xarray.tests.test_backends.TestH5NetCDFData ‑ test_open_subgroup
xarray.tests.test_backends.TestH5NetCDFData ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestH5NetCDFData ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestH5NetCDFData ‑ test_pickle
xarray.tests.test_backends.TestH5NetCDFData ‑ test_pickle_dataarray
xarray.tests.test_backends.TestH5NetCDFData ‑ test_preferred_chunks_are_disk_chunk_sizes
xarray.tests.test_backends.TestH5NetCDFData ‑ test_preferred_chunks_is_present
xarray.tests.test_backends.TestH5NetCDFData ‑ test_raise_on_forward_slashes_in_names
xarray.tests.test_backends.TestH5NetCDFData ‑ test_read_byte_attrs_as_unicode
xarray.tests.test_backends.TestH5NetCDFData ‑ test_read_variable_len_strings
xarray.tests.test_backends.TestH5NetCDFData ‑ test_refresh_from_disk
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_character_array
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_endian
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_string_with_fill_value_vlen[XXX]
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_string_with_fill_value_vlen[]
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_string_with_fill_value_vlen[b\xe1r]
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestH5NetCDFData ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestH5NetCDFData ‑ test_vectorized_indexing
xarray.tests.test_backends.TestH5NetCDFData ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestH5NetCDFData ‑ test_write_groups
xarray.tests.test_backends.TestH5NetCDFData ‑ test_write_store
xarray.tests.test_backends.TestH5NetCDFData ‑ test_zero_dimensional_variable
xarray.tests.test_backends.TestH5NetCDFDataRos3Driver ‑ test_get_variable_list
xarray.tests.test_backends.TestH5NetCDFDataRos3Driver ‑ test_get_variable_list_empty_driver_kwds
xarray.tests.test_backends.TestH5NetCDFDataRos3Driver ‑ test_robust_getitem
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_0dimensional_variable
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_append_overwrite_values
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_append_with_invalid_dim_raises
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_append_write
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_auto_chunking_is_based_on_disk_chunk_sizes
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_base_chunking_uses_disk_chunk_sizes
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_complex
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_complex_error[False]
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_complex_error[None]
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_compression_check_encoding_h5py
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_compression_encoding_h5py
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_compression_encoding_legacy
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_coordinates_encoding
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_cross_engine_read_write_netcdf4
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_dataset_caching
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_dataset_compute
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_default_fill_value
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_default_to_char_arrays
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_dropna
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_dump_and_open_encodings
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_dump_encodings
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_dump_encodings_h5py
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_encoding_chunksizes_unlimited
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_encoding_enum__error_multiple_variable_with_changing_enum
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_encoding_enum__multiple_variable_with_enum
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_encoding_enum__no_fill_value
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_encoding_kwarg
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_encoding_kwarg_compression
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_encoding_kwarg_dates
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_encoding_kwarg_vlen_string[input_strings0-True]
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_encoding_kwarg_vlen_string[input_strings1-False]
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_encoding_kwarg_vlen_string[input_strings2-False]
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_encoding_same_dtype
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_encoding_unlimited_dims
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_explicitly_omit_fill_value
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_invalid_dataarray_names_raise
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_isel_dataarray
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_keep_chunksizes_if_no_original_shape
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_load
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_mask_and_scale
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_multiindex_not_implemented
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_numpy_bool_
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_ondisk_after_print
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_open_badbytes
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_open_encodings
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_open_fileobj
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_open_group
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_open_subgroup
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_open_twice
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_pickle
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_pickle_dataarray
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_preferred_chunks_are_disk_chunk_sizes
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_preferred_chunks_is_present
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_raise_on_forward_slashes_in_names
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_read_byte_attrs_as_unicode
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_read_variable_len_strings
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_refresh_from_disk
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_character_array
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_endian
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_string_with_fill_value_vlen[XXX]
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_string_with_fill_value_vlen[]
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_string_with_fill_value_vlen[b\xe1r]
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_vectorized_indexing
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_write_groups
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_write_store
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_zero_dimensional_variable
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_0dimensional_variable
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_append_overwrite_values
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_append_with_invalid_dim_raises
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_append_write
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_auto_chunking_is_based_on_disk_chunk_sizes
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_base_chunking_uses_disk_chunk_sizes
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_complex
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_complex_error[False]
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_complex_error[None]
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_compression_check_encoding_h5py
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_compression_encoding_h5py
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_compression_encoding_legacy
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_coordinates_encoding
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_cross_engine_read_write_netcdf4
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_dataset_caching
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_dataset_compute
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_default_fill_value
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_default_to_char_arrays
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_dropna
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_dump_and_open_encodings
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_dump_encodings
Check notice on line 0 in .github
github-actions / Test Results
7357 skipped tests found (test 797 to 1504)
There are 7357 skipped tests, see "Raw output" for the list of skipped tests 797 to 1504.
Raw output
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_dump_encodings_h5py
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_encoding_chunksizes_unlimited
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_encoding_enum__error_multiple_variable_with_changing_enum
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_encoding_enum__multiple_variable_with_enum
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_encoding_enum__no_fill_value
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_encoding_kwarg
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_encoding_kwarg_compression
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_encoding_kwarg_dates
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_encoding_kwarg_vlen_string[input_strings0-True]
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_encoding_kwarg_vlen_string[input_strings1-False]
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_encoding_kwarg_vlen_string[input_strings2-False]
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_encoding_same_dtype
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_encoding_unlimited_dims
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_explicitly_omit_fill_value
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_invalid_dataarray_names_raise
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_isel_dataarray
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_keep_chunksizes_if_no_original_shape
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_load
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_mask_and_scale
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_multiindex_not_implemented
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_numpy_bool_
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_ondisk_after_print
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_open_encodings
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_open_group
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_open_subgroup
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_pickle
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_pickle_dataarray
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_preferred_chunks_are_disk_chunk_sizes
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_preferred_chunks_is_present
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_raise_on_forward_slashes_in_names
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_read_byte_attrs_as_unicode
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_read_variable_len_strings
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_refresh_from_disk
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_character_array
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_endian
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_string_with_fill_value_vlen[XXX]
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_string_with_fill_value_vlen[]
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_string_with_fill_value_vlen[b\xe1r]
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_vectorized_indexing
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_write_groups
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_write_inconsistent_chunks
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_write_store
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_zero_dimensional_variable
xarray.tests.test_backends.TestNCZarr ‑ test_open_nczarr
xarray.tests.test_backends.TestNCZarr ‑ test_overwriting_nczarr
xarray.tests.test_backends.TestNCZarr ‑ test_raise_writing_to_nczarr[a]
xarray.tests.test_backends.TestNCZarr ‑ test_raise_writing_to_nczarr[r+]
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_append_overwrite_values
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_append_with_invalid_dim_raises
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_append_write
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_coordinates_encoding
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_dataset_caching
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_dataset_compute
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_default_fill_value
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_dropna
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_dtype_coercion_error
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_encoding_kwarg
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_encoding_kwarg_dates
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_encoding_kwarg_vlen_string
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_encoding_same_dtype
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_explicitly_omit_fill_value
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_invalid_dataarray_names_raise
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_isel_dataarray
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_load
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_multiindex_not_implemented
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_ondisk_after_print
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_pickle
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_pickle_dataarray
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_endian
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_vectorized_indexing
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_write_store
xarray.tests.test_backends.TestNetCDF3ViaNetCDF4Data ‑ test_zero_dimensional_variable
xarray.tests.test_backends.TestNetCDF4AlreadyOpen ‑ test_base_case
xarray.tests.test_backends.TestNetCDF4AlreadyOpen ‑ test_deepcopy
xarray.tests.test_backends.TestNetCDF4AlreadyOpen ‑ test_group
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_append_overwrite_values
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_append_with_invalid_dim_raises
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_append_write
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_coordinates_encoding
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_dataset_caching
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_dataset_compute
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_default_fill_value
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_dropna
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_dtype_coercion_error
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_encoding_kwarg
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_encoding_kwarg_dates
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_encoding_same_dtype
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_explicitly_omit_fill_value
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_invalid_dataarray_names_raise
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_isel_dataarray
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_load
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_multiindex_not_implemented
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_ondisk_after_print
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_pickle
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_pickle_dataarray
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_endian
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_vectorized_indexing
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_write_store
xarray.tests.test_backends.TestNetCDF4ClassicViaNetCDF4Data ‑ test_zero_dimensional_variable
xarray.tests.test_backends.TestNetCDF4Data ‑ test_0dimensional_variable
xarray.tests.test_backends.TestNetCDF4Data ‑ test_append_overwrite_values
xarray.tests.test_backends.TestNetCDF4Data ‑ test_append_with_invalid_dim_raises
xarray.tests.test_backends.TestNetCDF4Data ‑ test_append_write
xarray.tests.test_backends.TestNetCDF4Data ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestNetCDF4Data ‑ test_auto_chunking_is_based_on_disk_chunk_sizes
xarray.tests.test_backends.TestNetCDF4Data ‑ test_base_chunking_uses_disk_chunk_sizes
xarray.tests.test_backends.TestNetCDF4Data ‑ test_compression_encoding[None]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_compression_encoding[blosc_lz4]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_compression_encoding[blosc_lz4hc]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_compression_encoding[blosc_lz]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_compression_encoding[blosc_zlib]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_compression_encoding[blosc_zstd]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_compression_encoding[szip]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_compression_encoding[zlib]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_compression_encoding[zstd]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_compression_encoding_legacy
xarray.tests.test_backends.TestNetCDF4Data ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_backends.TestNetCDF4Data ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_backends.TestNetCDF4Data ‑ test_coordinates_encoding
xarray.tests.test_backends.TestNetCDF4Data ‑ test_dataset_caching
xarray.tests.test_backends.TestNetCDF4Data ‑ test_dataset_compute
xarray.tests.test_backends.TestNetCDF4Data ‑ test_default_fill_value
xarray.tests.test_backends.TestNetCDF4Data ‑ test_default_to_char_arrays
xarray.tests.test_backends.TestNetCDF4Data ‑ test_dropna
xarray.tests.test_backends.TestNetCDF4Data ‑ test_dump_and_open_encodings
xarray.tests.test_backends.TestNetCDF4Data ‑ test_dump_encodings
xarray.tests.test_backends.TestNetCDF4Data ‑ test_encoding_chunksizes_unlimited
xarray.tests.test_backends.TestNetCDF4Data ‑ test_encoding_enum__error_multiple_variable_with_changing_enum
xarray.tests.test_backends.TestNetCDF4Data ‑ test_encoding_enum__multiple_variable_with_enum
xarray.tests.test_backends.TestNetCDF4Data ‑ test_encoding_enum__no_fill_value
xarray.tests.test_backends.TestNetCDF4Data ‑ test_encoding_kwarg
xarray.tests.test_backends.TestNetCDF4Data ‑ test_encoding_kwarg_compression
xarray.tests.test_backends.TestNetCDF4Data ‑ test_encoding_kwarg_dates
xarray.tests.test_backends.TestNetCDF4Data ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_backends.TestNetCDF4Data ‑ test_encoding_kwarg_vlen_string[input_strings0-True]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_encoding_kwarg_vlen_string[input_strings1-False]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_encoding_kwarg_vlen_string[input_strings2-False]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_encoding_same_dtype
xarray.tests.test_backends.TestNetCDF4Data ‑ test_encoding_unlimited_dims
xarray.tests.test_backends.TestNetCDF4Data ‑ test_explicitly_omit_fill_value
xarray.tests.test_backends.TestNetCDF4Data ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_backends.TestNetCDF4Data ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_backends.TestNetCDF4Data ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_backends.TestNetCDF4Data ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_backends.TestNetCDF4Data ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_backends.TestNetCDF4Data ‑ test_invalid_dataarray_names_raise
xarray.tests.test_backends.TestNetCDF4Data ‑ test_isel_dataarray
xarray.tests.test_backends.TestNetCDF4Data ‑ test_keep_chunksizes_if_no_original_shape
xarray.tests.test_backends.TestNetCDF4Data ‑ test_load
xarray.tests.test_backends.TestNetCDF4Data ‑ test_mask_and_scale
xarray.tests.test_backends.TestNetCDF4Data ‑ test_multiindex_not_implemented
xarray.tests.test_backends.TestNetCDF4Data ‑ test_ondisk_after_print
xarray.tests.test_backends.TestNetCDF4Data ‑ test_open_encodings
xarray.tests.test_backends.TestNetCDF4Data ‑ test_open_group
xarray.tests.test_backends.TestNetCDF4Data ‑ test_open_subgroup
xarray.tests.test_backends.TestNetCDF4Data ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestNetCDF4Data ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestNetCDF4Data ‑ test_pickle
xarray.tests.test_backends.TestNetCDF4Data ‑ test_pickle_dataarray
xarray.tests.test_backends.TestNetCDF4Data ‑ test_preferred_chunks_are_disk_chunk_sizes
xarray.tests.test_backends.TestNetCDF4Data ‑ test_preferred_chunks_is_present
xarray.tests.test_backends.TestNetCDF4Data ‑ test_raise_on_forward_slashes_in_names
xarray.tests.test_backends.TestNetCDF4Data ‑ test_read_variable_len_strings
xarray.tests.test_backends.TestNetCDF4Data ‑ test_refresh_from_disk
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_character_array
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_endian
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_string_with_fill_value_vlen[XXX]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_string_with_fill_value_vlen[]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_string_with_fill_value_vlen[b\xe1r]
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestNetCDF4Data ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestNetCDF4Data ‑ test_setncattr_string
xarray.tests.test_backends.TestNetCDF4Data ‑ test_unsorted_index_raises
xarray.tests.test_backends.TestNetCDF4Data ‑ test_variable_order
xarray.tests.test_backends.TestNetCDF4Data ‑ test_vectorized_indexing
xarray.tests.test_backends.TestNetCDF4Data ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestNetCDF4Data ‑ test_write_groups
xarray.tests.test_backends.TestNetCDF4Data ‑ test_write_store
xarray.tests.test_backends.TestNetCDF4Data ‑ test_zero_dimensional_variable
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_0dimensional_variable
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_append_overwrite_values
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_append_with_invalid_dim_raises
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_append_write
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_auto_chunking_is_based_on_disk_chunk_sizes
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_base_chunking_uses_disk_chunk_sizes
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_compression_encoding[None]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_compression_encoding[blosc_lz4]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_compression_encoding[blosc_lz4hc]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_compression_encoding[blosc_lz]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_compression_encoding[blosc_zlib]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_compression_encoding[blosc_zstd]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_compression_encoding[szip]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_compression_encoding[zlib]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_compression_encoding[zstd]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_compression_encoding_legacy
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_coordinates_encoding
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_dataset_caching
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_dataset_compute
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_default_fill_value
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_default_to_char_arrays
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_dropna
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_dump_and_open_encodings
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_dump_encodings
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_encoding_chunksizes_unlimited
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_encoding_enum__error_multiple_variable_with_changing_enum
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_encoding_enum__multiple_variable_with_enum
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_encoding_enum__no_fill_value
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_encoding_kwarg
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_encoding_kwarg_compression
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_encoding_kwarg_dates
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_encoding_kwarg_vlen_string[input_strings0-True]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_encoding_kwarg_vlen_string[input_strings1-False]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_encoding_kwarg_vlen_string[input_strings2-False]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_encoding_same_dtype
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_encoding_unlimited_dims
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_explicitly_omit_fill_value
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_invalid_dataarray_names_raise
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_isel_dataarray
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_keep_chunksizes_if_no_original_shape
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_load
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_mask_and_scale
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_multiindex_not_implemented
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_ondisk_after_print
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_open_encodings
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_open_group
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_open_subgroup
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_pickle
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_pickle_dataarray
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_preferred_chunks_are_disk_chunk_sizes
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_preferred_chunks_is_present
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_raise_on_forward_slashes_in_names
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_read_variable_len_strings
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_refresh_from_disk
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_character_array
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_endian
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_string_with_fill_value_vlen[XXX]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_string_with_fill_value_vlen[]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_string_with_fill_value_vlen[b\xe1r]
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_setncattr_string
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_unsorted_index_raises
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_variable_order
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_vectorized_indexing
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_write_groups
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_write_inconsistent_chunks
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_write_store
xarray.tests.test_backends.TestNetCDF4ViaDaskData ‑ test_zero_dimensional_variable
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_common_coord_when_datavars_all
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_common_coord_when_datavars_minimal
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_invalid_data_vars_value_should_fail
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_dataarray_attr_by_coords
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_dataset_attr_by_coords
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_dataset_combine_attrs[drop]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_dataset_combine_attrs[drop_conflicts]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_dataset_combine_attrs[identical]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_dataset_combine_attrs[no_conflicts]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_dataset_combine_attrs[override]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[inner-all-by_coords-None]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[inner-all-nested-t]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[inner-different-by_coords-None]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[inner-different-nested-t]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[inner-minimal-by_coords-None]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[inner-minimal-nested-t]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[left-all-by_coords-None]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[left-all-nested-t]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[left-different-by_coords-None]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[left-different-nested-t]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[left-minimal-by_coords-None]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[left-minimal-nested-t]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[outer-all-by_coords-None]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[outer-all-nested-t]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[outer-different-by_coords-None]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[outer-different-nested-t]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[outer-minimal-by_coords-None]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[outer-minimal-nested-t]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[right-all-by_coords-None]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[right-all-nested-t]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[right-different-by_coords-None]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[right-different-nested-t]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[right-minimal-by_coords-None]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_does_same_as_concat[right-minimal-nested-t]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_exact_join_raises_error[all-by_coords-None]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_exact_join_raises_error[all-nested-t]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_exact_join_raises_error[different-by_coords-None]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_exact_join_raises_error[different-nested-t]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_exact_join_raises_error[minimal-by_coords-None]
xarray.tests.test_backends.TestOpenMFDatasetWithDataVarsAndCoordsKw ‑ test_open_mfdataset_exact_join_raises_error[minimal-nested-t]
xarray.tests.test_backends.TestPyNio ‑ test_append_overwrite_values
xarray.tests.test_backends.TestPyNio ‑ test_append_with_invalid_dim_raises
xarray.tests.test_backends.TestPyNio ‑ test_append_write
xarray.tests.test_backends.TestPyNio ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestPyNio ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_backends.TestPyNio ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_backends.TestPyNio ‑ test_coordinates_encoding
xarray.tests.test_backends.TestPyNio ‑ test_dataset_caching
xarray.tests.test_backends.TestPyNio ‑ test_dataset_compute
xarray.tests.test_backends.TestPyNio ‑ test_default_fill_value
xarray.tests.test_backends.TestPyNio ‑ test_dropna
xarray.tests.test_backends.TestPyNio ‑ test_dtype_coercion_error
xarray.tests.test_backends.TestPyNio ‑ test_encoding_kwarg
xarray.tests.test_backends.TestPyNio ‑ test_encoding_kwarg_dates
xarray.tests.test_backends.TestPyNio ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_backends.TestPyNio ‑ test_encoding_same_dtype
xarray.tests.test_backends.TestPyNio ‑ test_explicitly_omit_fill_value
xarray.tests.test_backends.TestPyNio ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_backends.TestPyNio ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_backends.TestPyNio ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_backends.TestPyNio ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_backends.TestPyNio ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_backends.TestPyNio ‑ test_invalid_dataarray_names_raise
xarray.tests.test_backends.TestPyNio ‑ test_isel_dataarray
xarray.tests.test_backends.TestPyNio ‑ test_kwargs
xarray.tests.test_backends.TestPyNio ‑ test_load
xarray.tests.test_backends.TestPyNio ‑ test_multiindex_not_implemented
xarray.tests.test_backends.TestPyNio ‑ test_ondisk_after_print
xarray.tests.test_backends.TestPyNio ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestPyNio ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestPyNio ‑ test_pickle
xarray.tests.test_backends.TestPyNio ‑ test_pickle_dataarray
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_endian
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestPyNio ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestPyNio ‑ test_vectorized_indexing
xarray.tests.test_backends.TestPyNio ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestPyNio ‑ test_weakrefs
xarray.tests.test_backends.TestPyNio ‑ test_write_store
xarray.tests.test_backends.TestPyNio ‑ test_zero_dimensional_variable
xarray.tests.test_backends.TestPydap ‑ test_cmp_local_file
xarray.tests.test_backends.TestPydap ‑ test_compatible_to_netcdf
xarray.tests.test_backends.TestPydap ‑ test_dask
xarray.tests.test_backends.TestPydapOnline ‑ test_cmp_local_file
xarray.tests.test_backends.TestPydapOnline ‑ test_compatible_to_netcdf
xarray.tests.test_backends.TestPydapOnline ‑ test_dask
xarray.tests.test_backends.TestPydapOnline ‑ test_session
xarray.tests.test_backends.TestScipyFileObject ‑ test_append_overwrite_values
xarray.tests.test_backends.TestScipyFileObject ‑ test_append_with_invalid_dim_raises
xarray.tests.test_backends.TestScipyFileObject ‑ test_append_write
xarray.tests.test_backends.TestScipyFileObject ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestScipyFileObject ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_backends.TestScipyFileObject ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_backends.TestScipyFileObject ‑ test_coordinates_encoding
xarray.tests.test_backends.TestScipyFileObject ‑ test_dataset_caching
xarray.tests.test_backends.TestScipyFileObject ‑ test_dataset_compute
xarray.tests.test_backends.TestScipyFileObject ‑ test_default_fill_value
xarray.tests.test_backends.TestScipyFileObject ‑ test_dropna
xarray.tests.test_backends.TestScipyFileObject ‑ test_dtype_coercion_error
xarray.tests.test_backends.TestScipyFileObject ‑ test_encoding_kwarg
xarray.tests.test_backends.TestScipyFileObject ‑ test_encoding_kwarg_dates
xarray.tests.test_backends.TestScipyFileObject ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_backends.TestScipyFileObject ‑ test_encoding_same_dtype
xarray.tests.test_backends.TestScipyFileObject ‑ test_explicitly_omit_fill_value
xarray.tests.test_backends.TestScipyFileObject ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_backends.TestScipyFileObject ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_backends.TestScipyFileObject ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_backends.TestScipyFileObject ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_backends.TestScipyFileObject ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_backends.TestScipyFileObject ‑ test_invalid_dataarray_names_raise
xarray.tests.test_backends.TestScipyFileObject ‑ test_isel_dataarray
xarray.tests.test_backends.TestScipyFileObject ‑ test_load
xarray.tests.test_backends.TestScipyFileObject ‑ test_multiindex_not_implemented
xarray.tests.test_backends.TestScipyFileObject ‑ test_ondisk_after_print
xarray.tests.test_backends.TestScipyFileObject ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestScipyFileObject ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestScipyFileObject ‑ test_pickle
xarray.tests.test_backends.TestScipyFileObject ‑ test_pickle_dataarray
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_endian
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestScipyFileObject ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestScipyFileObject ‑ test_vectorized_indexing
xarray.tests.test_backends.TestScipyFileObject ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestScipyFileObject ‑ test_write_store
xarray.tests.test_backends.TestScipyFileObject ‑ test_zero_dimensional_variable
xarray.tests.test_backends.TestScipyFilePath ‑ test_append_overwrite_values
xarray.tests.test_backends.TestScipyFilePath ‑ test_append_with_invalid_dim_raises
xarray.tests.test_backends.TestScipyFilePath ‑ test_append_write
xarray.tests.test_backends.TestScipyFilePath ‑ test_array_attrs
xarray.tests.test_backends.TestScipyFilePath ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestScipyFilePath ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_backends.TestScipyFilePath ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_backends.TestScipyFilePath ‑ test_coordinates_encoding
xarray.tests.test_backends.TestScipyFilePath ‑ test_dataset_caching
xarray.tests.test_backends.TestScipyFilePath ‑ test_dataset_compute
xarray.tests.test_backends.TestScipyFilePath ‑ test_default_fill_value
xarray.tests.test_backends.TestScipyFilePath ‑ test_dropna
xarray.tests.test_backends.TestScipyFilePath ‑ test_dtype_coercion_error
xarray.tests.test_backends.TestScipyFilePath ‑ test_encoding_kwarg
xarray.tests.test_backends.TestScipyFilePath ‑ test_encoding_kwarg_dates
xarray.tests.test_backends.TestScipyFilePath ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_backends.TestScipyFilePath ‑ test_encoding_same_dtype
xarray.tests.test_backends.TestScipyFilePath ‑ test_explicitly_omit_fill_value
xarray.tests.test_backends.TestScipyFilePath ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_backends.TestScipyFilePath ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_backends.TestScipyFilePath ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_backends.TestScipyFilePath ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_backends.TestScipyFilePath ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_backends.TestScipyFilePath ‑ test_invalid_dataarray_names_raise
xarray.tests.test_backends.TestScipyFilePath ‑ test_isel_dataarray
xarray.tests.test_backends.TestScipyFilePath ‑ test_load
xarray.tests.test_backends.TestScipyFilePath ‑ test_multiindex_not_implemented
xarray.tests.test_backends.TestScipyFilePath ‑ test_nc4_scipy
xarray.tests.test_backends.TestScipyFilePath ‑ test_netcdf3_endianness
xarray.tests.test_backends.TestScipyFilePath ‑ test_ondisk_after_print
xarray.tests.test_backends.TestScipyFilePath ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestScipyFilePath ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestScipyFilePath ‑ test_pickle
xarray.tests.test_backends.TestScipyFilePath ‑ test_pickle_dataarray
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_endian
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_example_1_netcdf_gz
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestScipyFilePath ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestScipyFilePath ‑ test_vectorized_indexing
xarray.tests.test_backends.TestScipyFilePath ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestScipyFilePath ‑ test_write_store
xarray.tests.test_backends.TestScipyFilePath ‑ test_zero_dimensional_variable
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_append_overwrite_values
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_append_with_invalid_dim_raises
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_append_write
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_bytes_pickle
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_coordinates_encoding
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_dataset_caching
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_dataset_compute
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_default_fill_value
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_dropna
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_dtype_coercion_error
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_encoding_kwarg
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_encoding_kwarg_dates
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_encoding_same_dtype
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_explicitly_omit_fill_value
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_invalid_dataarray_names_raise
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_isel_dataarray
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_load
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_multiindex_not_implemented
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_ondisk_after_print
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_pickle
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_pickle_dataarray
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_endian
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_to_netcdf_explicit_engine
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_vectorized_indexing
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_write_store
xarray.tests.test_backends.TestScipyInMemoryData ‑ test_zero_dimensional_variable
xarray.tests.test_backends.TestValidateAttrs ‑ test_validating_attrs
xarray.tests.test_backends.TestZarrDictStore ‑ test_append_overwrite_values
xarray.tests.test_backends.TestZarrDictStore ‑ test_append_string_length_mismatch_raises[S]
xarray.tests.test_backends.TestZarrDictStore ‑ test_append_string_length_mismatch_raises[U]
xarray.tests.test_backends.TestZarrDictStore ‑ test_append_with_append_dim_no_overwrite
xarray.tests.test_backends.TestZarrDictStore ‑ test_append_with_append_dim_not_set_raises
xarray.tests.test_backends.TestZarrDictStore ‑ test_append_with_existing_encoding_raises
xarray.tests.test_backends.TestZarrDictStore ‑ test_append_with_invalid_dim_raises
xarray.tests.test_backends.TestZarrDictStore ‑ test_append_with_mode_not_a_raises
xarray.tests.test_backends.TestZarrDictStore ‑ test_append_with_mode_rplus_fails
xarray.tests.test_backends.TestZarrDictStore ‑ test_append_with_mode_rplus_success
xarray.tests.test_backends.TestZarrDictStore ‑ test_append_with_new_variable
xarray.tests.test_backends.TestZarrDictStore ‑ test_append_with_no_dims_raises
xarray.tests.test_backends.TestZarrDictStore ‑ test_append_write
xarray.tests.test_backends.TestZarrDictStore ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestZarrDictStore ‑ test_attributes[obj0]
xarray.tests.test_backends.TestZarrDictStore ‑ test_attributes[obj1]
xarray.tests.test_backends.TestZarrDictStore ‑ test_auto_chunk
xarray.tests.test_backends.TestZarrDictStore ‑ test_check_encoding_is_consistent_after_append
xarray.tests.test_backends.TestZarrDictStore ‑ test_chunk_encoding
xarray.tests.test_backends.TestZarrDictStore ‑ test_chunk_encoding_with_dask
xarray.tests.test_backends.TestZarrDictStore ‑ test_chunk_encoding_with_larger_dask_chunks
xarray.tests.test_backends.TestZarrDictStore ‑ test_chunk_encoding_with_partial_dask_chunks
xarray.tests.test_backends.TestZarrDictStore ‑ test_chunked_cftime_datetime
xarray.tests.test_backends.TestZarrDictStore ‑ test_chunked_datetime64_or_timedelta64[datetime64[ns]]
xarray.tests.test_backends.TestZarrDictStore ‑ test_chunked_datetime64_or_timedelta64[timedelta64[ns]]
xarray.tests.test_backends.TestZarrDictStore ‑ test_compressor_encoding
xarray.tests.test_backends.TestZarrDictStore ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_backends.TestZarrDictStore ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_backends.TestZarrDictStore ‑ test_coordinates_encoding
xarray.tests.test_backends.TestZarrDictStore ‑ test_dataset_caching
Check notice on line 0 in .github
github-actions / Test Results
7357 skipped tests found (test 1505 to 2210)
There are 7357 skipped tests, see "Raw output" for the list of skipped tests 1505 to 2210.
Raw output
xarray.tests.test_backends.TestZarrDictStore ‑ test_dataset_compute
xarray.tests.test_backends.TestZarrDictStore ‑ test_default_fill_value
xarray.tests.test_backends.TestZarrDictStore ‑ test_deprecate_auto_chunk
xarray.tests.test_backends.TestZarrDictStore ‑ test_drop_encoding
xarray.tests.test_backends.TestZarrDictStore ‑ test_dropna
xarray.tests.test_backends.TestZarrDictStore ‑ test_encoding_chunksizes
xarray.tests.test_backends.TestZarrDictStore ‑ test_encoding_kwarg
xarray.tests.test_backends.TestZarrDictStore ‑ test_encoding_kwarg_dates
xarray.tests.test_backends.TestZarrDictStore ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_backends.TestZarrDictStore ‑ test_encoding_same_dtype
xarray.tests.test_backends.TestZarrDictStore ‑ test_explicitly_omit_fill_value
xarray.tests.test_backends.TestZarrDictStore ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_backends.TestZarrDictStore ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_backends.TestZarrDictStore ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_backends.TestZarrDictStore ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_backends.TestZarrDictStore ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_backends.TestZarrDictStore ‑ test_group
xarray.tests.test_backends.TestZarrDictStore ‑ test_hidden_zarr_keys
xarray.tests.test_backends.TestZarrDictStore ‑ test_invalid_dataarray_names_raise
xarray.tests.test_backends.TestZarrDictStore ‑ test_isel_dataarray
xarray.tests.test_backends.TestZarrDictStore ‑ test_load
xarray.tests.test_backends.TestZarrDictStore ‑ test_manual_chunk
xarray.tests.test_backends.TestZarrDictStore ‑ test_multiindex_not_implemented
xarray.tests.test_backends.TestZarrDictStore ‑ test_no_warning_from_open_emptydim_with_chunks
xarray.tests.test_backends.TestZarrDictStore ‑ test_non_existent_store
xarray.tests.test_backends.TestZarrDictStore ‑ test_ondisk_after_print
xarray.tests.test_backends.TestZarrDictStore ‑ test_open_zarr_use_cftime
xarray.tests.test_backends.TestZarrDictStore ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestZarrDictStore ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestZarrDictStore ‑ test_pickle
xarray.tests.test_backends.TestZarrDictStore ‑ test_pickle_dataarray
xarray.tests.test_backends.TestZarrDictStore ‑ test_read_non_consolidated_warning
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_consolidated[False]
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_consolidated[None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_consolidated[True]
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_endian
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestZarrDictStore ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestZarrDictStore ‑ test_save_emptydim[False]
xarray.tests.test_backends.TestZarrDictStore ‑ test_save_emptydim[True]
xarray.tests.test_backends.TestZarrDictStore ‑ test_to_zarr_append_compute_false_roundtrip
xarray.tests.test_backends.TestZarrDictStore ‑ test_to_zarr_compute_false_roundtrip
xarray.tests.test_backends.TestZarrDictStore ‑ test_vectorized_indexing
xarray.tests.test_backends.TestZarrDictStore ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestZarrDictStore ‑ test_warning_on_bad_chunks
xarray.tests.test_backends.TestZarrDictStore ‑ test_with_chunkstore
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_persistence_modes[None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_persistence_modes[group1]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_preexisting_override_metadata
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_read_select_write
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[False-False-False-False]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[False-False-False-None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[False-False-False-True]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[False-False-True-False]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[False-False-True-None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[False-False-True-True]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[False-True-False-False]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[False-True-False-None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[False-True-False-True]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[False-True-True-False]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[False-True-True-None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[False-True-True-True]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[None-False-False-False]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[None-False-False-None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[None-False-False-True]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[None-False-True-False]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[None-False-True-None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[None-False-True-True]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[None-True-False-False]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[None-True-False-None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[None-True-False-True]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[None-True-True-False]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[None-True-True-None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[None-True-True-True]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[True-False-False-False]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[True-False-False-None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[True-False-False-True]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[True-False-True-False]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[True-False-True-None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[True-False-True-True]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[True-True-False-False]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[True-True-False-None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[True-True-False-True]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[True-True-True-False]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[True-True-True-None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[True-True-True-True]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region_errors
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region_mode[None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region_mode[a]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region_mode[r+]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_store
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_uneven_dask_chunks
xarray.tests.test_backends.TestZarrDictStore ‑ test_zero_dimensional_variable
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_append_overwrite_values
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_append_string_length_mismatch_raises[S]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_append_string_length_mismatch_raises[U]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_append_with_append_dim_no_overwrite
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_append_with_append_dim_not_set_raises
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_append_with_existing_encoding_raises
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_append_with_invalid_dim_raises
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_append_with_mode_not_a_raises
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_append_with_mode_rplus_fails
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_append_with_mode_rplus_success
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_append_with_new_variable
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_append_with_no_dims_raises
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_append_write
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_attributes[obj0]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_attributes[obj1]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_auto_chunk
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_check_encoding_is_consistent_after_append
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_chunk_encoding
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_chunk_encoding_with_dask
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_chunk_encoding_with_larger_dask_chunks
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_chunk_encoding_with_partial_dask_chunks
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_chunked_cftime_datetime
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_chunked_datetime64_or_timedelta64[datetime64[ns]]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_chunked_datetime64_or_timedelta64[timedelta64[ns]]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_compressor_encoding
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_coordinates_encoding
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_dataset_caching
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_dataset_compute
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_default_fill_value
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_deprecate_auto_chunk
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_drop_encoding
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_dropna
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_encoding_chunksizes
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_encoding_kwarg
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_encoding_kwarg_dates
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_encoding_same_dtype
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_explicitly_omit_fill_value
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_group
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_hidden_zarr_keys
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_invalid_dataarray_names_raise
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_isel_dataarray
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_load
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_manual_chunk
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_multiindex_not_implemented
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_no_warning_from_open_emptydim_with_chunks
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_non_existent_store
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_ondisk_after_print
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_open_zarr_use_cftime
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_pickle
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_pickle_dataarray
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_read_non_consolidated_warning
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_consolidated[False]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_consolidated[None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_consolidated[True]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_endian
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_save_emptydim[False]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_save_emptydim[True]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_to_zarr_append_compute_false_roundtrip
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_to_zarr_compute_false_roundtrip
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_vectorized_indexing
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_warning_on_bad_chunks
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_with_chunkstore
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_persistence_modes[None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_persistence_modes[group1]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_preexisting_override_metadata
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_read_select_write
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[False-False-False-False]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[False-False-False-None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[False-False-False-True]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[False-False-True-False]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[False-False-True-None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[False-False-True-True]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[False-True-False-False]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[False-True-False-None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[False-True-False-True]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[False-True-True-False]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[False-True-True-None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[False-True-True-True]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[None-False-False-False]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[None-False-False-None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[None-False-False-True]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[None-False-True-False]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[None-False-True-None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[None-False-True-True]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[None-True-False-False]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[None-True-False-None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[None-True-False-True]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[None-True-True-False]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[None-True-True-None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[None-True-True-True]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[True-False-False-False]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[True-False-False-None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[True-False-False-True]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[True-False-True-False]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[True-False-True-None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[True-False-True-True]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[True-True-False-False]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[True-True-False-None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[True-True-False-True]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[True-True-True-False]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[True-True-True-None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[True-True-True-True]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region_errors
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region_mode[None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region_mode[a]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region_mode[r+]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_store
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_uneven_dask_chunks
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_zero_dimensional_variable
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_append_overwrite_values
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_append_string_length_mismatch_raises[S]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_append_string_length_mismatch_raises[U]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_append_with_append_dim_no_overwrite
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_append_with_append_dim_not_set_raises
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_append_with_existing_encoding_raises
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_append_with_invalid_dim_raises
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_append_with_mode_not_a_raises
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_append_with_mode_rplus_fails
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_append_with_mode_rplus_success
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_append_with_new_variable
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_append_with_no_dims_raises
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_append_write
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_attributes[obj0]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_attributes[obj1]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_auto_chunk
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_check_encoding_is_consistent_after_append
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_chunk_encoding
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_chunk_encoding_with_dask
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_chunk_encoding_with_larger_dask_chunks
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_chunk_encoding_with_partial_dask_chunks
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_chunked_cftime_datetime
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_chunked_datetime64_or_timedelta64[datetime64[ns]]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_chunked_datetime64_or_timedelta64[timedelta64[ns]]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_compressor_encoding
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_coordinates_encoding
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_dataset_caching
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_dataset_compute
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_default_fill_value
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_deprecate_auto_chunk
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_drop_encoding
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_dropna
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_encoding_chunksizes
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_encoding_kwarg
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_encoding_kwarg_dates
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_encoding_same_dtype
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_explicitly_omit_fill_value
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_group
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_hidden_zarr_keys
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_invalid_dataarray_names_raise
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_isel_dataarray
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_load
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_manual_chunk
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_multiindex_not_implemented
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_no_warning_from_open_emptydim_with_chunks
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_non_existent_store
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_ondisk_after_print
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_open_zarr_use_cftime
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_pickle
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_pickle_dataarray
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_read_non_consolidated_warning
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_consolidated[False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_consolidated[None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_consolidated[True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_endian
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_save_emptydim[False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_save_emptydim[True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_to_zarr_append_compute_false_roundtrip
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_to_zarr_compute_false_roundtrip
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_vectorized_indexing
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_warning_on_bad_chunks
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_with_chunkstore
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_persistence_modes[None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_persistence_modes[group1]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_preexisting_override_metadata
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_read_select_write
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-False-False-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-False-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-False-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-False-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-False-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-False-True-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-True-False-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-True-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-True-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-True-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-True-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-True-True-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[None-False-False-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[None-False-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[None-False-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[None-False-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[None-False-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[None-False-True-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[None-True-False-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[None-True-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[None-True-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[None-True-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[None-True-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[None-True-True-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-False-False-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-False-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-False-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-False-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-False-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-False-True-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-True-False-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-True-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-True-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-True-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-True-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-True-True-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region_errors
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region_mode[None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region_mode[a]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region_mode[r+]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_store
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_uneven_dask_chunks
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_zero_dimensional_variable
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_append_overwrite_values
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_append_string_length_mismatch_raises[S]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_append_string_length_mismatch_raises[U]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_append_with_append_dim_no_overwrite
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_append_with_append_dim_not_set_raises
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_append_with_existing_encoding_raises
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_append_with_invalid_dim_raises
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_append_with_mode_not_a_raises
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_append_with_mode_rplus_fails
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_append_with_mode_rplus_success
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_append_with_new_variable
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_append_with_no_dims_raises
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_append_write
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_attributes[obj0]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_attributes[obj1]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_auto_chunk
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_check_encoding_is_consistent_after_append
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_chunk_encoding
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_chunk_encoding_with_dask
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_chunk_encoding_with_larger_dask_chunks
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_chunk_encoding_with_partial_dask_chunks
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_chunked_cftime_datetime
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_chunked_datetime64_or_timedelta64[datetime64[ns]]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_chunked_datetime64_or_timedelta64[timedelta64[ns]]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_compressor_encoding
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_coordinates_encoding
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_dataset_caching
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_dataset_compute
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_default_fill_value
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_deprecate_auto_chunk
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_drop_encoding
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_dropna
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_encoding_chunksizes
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_encoding_kwarg
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_encoding_kwarg_dates
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_encoding_same_dtype
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_explicitly_omit_fill_value
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_group
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_hidden_zarr_keys
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_invalid_dataarray_names_raise
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_isel_dataarray
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_load
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_manual_chunk
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_multiindex_not_implemented
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_no_warning_from_open_emptydim_with_chunks
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_non_existent_store
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_ondisk_after_print
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_open_zarr_use_cftime
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_pickle
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_pickle_dataarray
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_read_non_consolidated_warning
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_consolidated[False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_consolidated[None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_consolidated[True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_endian
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_save_emptydim[False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_save_emptydim[True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_to_zarr_append_compute_false_roundtrip
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_to_zarr_compute_false_roundtrip
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_vectorized_indexing
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_warning_on_bad_chunks
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_with_chunkstore
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_persistence_modes[None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_persistence_modes[group1]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_preexisting_override_metadata
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_read_select_write
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-False-False-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-False-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-False-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-False-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-False-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-False-True-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-True-False-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-True-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-True-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-True-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-True-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-True-True-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[None-False-False-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[None-False-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[None-False-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[None-False-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[None-False-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[None-False-True-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[None-True-False-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[None-True-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[None-True-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[None-True-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[None-True-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[None-True-True-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-False-False-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-False-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-False-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-False-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-False-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-False-True-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-True-False-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-True-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-True-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-True-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-True-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-True-True-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region_errors
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region_mode[None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region_mode[a]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region_mode[r+]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_store
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_uneven_dask_chunks
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_zero_dimensional_variable
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_append_overwrite_values
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_append_string_length_mismatch_raises[S]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_append_string_length_mismatch_raises[U]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_append_with_append_dim_no_overwrite
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_append_with_append_dim_not_set_raises
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_append_with_existing_encoding_raises
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_append_with_invalid_dim_raises
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_append_with_mode_not_a_raises
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_append_with_mode_rplus_fails
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_append_with_mode_rplus_success
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_append_with_new_variable
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_append_with_no_dims_raises
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_append_write
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_attributes[obj0]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_attributes[obj1]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_auto_chunk
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_check_encoding_is_consistent_after_append
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_chunk_encoding
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_chunk_encoding_with_dask
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_chunk_encoding_with_larger_dask_chunks
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_chunk_encoding_with_partial_dask_chunks
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_chunked_cftime_datetime
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_chunked_datetime64_or_timedelta64[datetime64[ns]]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_chunked_datetime64_or_timedelta64[timedelta64[ns]]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_compressor_encoding
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_coordinates_encoding
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_dataset_caching
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_dataset_compute
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_default_fill_value
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_deprecate_auto_chunk
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_drop_encoding
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_dropna
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_encoding_chunksizes
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_encoding_kwarg
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_encoding_kwarg_dates
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_encoding_same_dtype
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_explicitly_omit_fill_value
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_group
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_hidden_zarr_keys
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_invalid_dataarray_names_raise
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_isel_dataarray
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_load
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_manual_chunk
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_multiindex_not_implemented
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_no_warning_from_open_emptydim_with_chunks
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_non_existent_store
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_ondisk_after_print
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_open_zarr_use_cftime
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_pickle
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_pickle_dataarray
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_read_non_consolidated_warning
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_consolidated[False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_consolidated[None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_consolidated[True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_endian
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_save_emptydim[False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_save_emptydim[True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_to_zarr_append_compute_false_roundtrip
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_to_zarr_compute_false_roundtrip
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_vectorized_indexing
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_warning_on_bad_chunks
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_with_chunkstore
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_persistence_modes[None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_persistence_modes[group1]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_preexisting_override_metadata
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_read_select_write
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-False-False-False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-False-False-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-False-False-True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-False-True-False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-False-True-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-False-True-True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-True-False-False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-True-False-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-True-False-True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-True-True-False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-True-True-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-True-True-True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[None-False-False-False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[None-False-False-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[None-False-False-True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[None-False-True-False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[None-False-True-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[None-False-True-True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[None-True-False-False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[None-True-False-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[None-True-False-True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[None-True-True-False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[None-True-True-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[None-True-True-True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-False-False-False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-False-False-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-False-False-True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-False-True-False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-False-True-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-False-True-True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-True-False-False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-True-False-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-True-False-True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-True-True-False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-True-True-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-True-True-True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region_errors
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region_mode[None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region_mode[a]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region_mode[r+]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_store
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_uneven_dask_chunks
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_zero_dimensional_variable
xarray.tests.test_backends.TestZarrRegionAuto ‑ test_zarr_region_append
xarray.tests.test_backends.TestZarrRegionAuto ‑ test_zarr_region_auto_all
xarray.tests.test_backends.TestZarrRegionAuto ‑ test_zarr_region_auto_mixed
xarray.tests.test_backends.TestZarrRegionAuto ‑ test_zarr_region_auto_new_coord_vals
xarray.tests.test_backends.TestZarrRegionAuto ‑ test_zarr_region_auto_noncontiguous
xarray.tests.test_backends.TestZarrRegionAuto ‑ test_zarr_region_index_write
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_append_overwrite_values
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_append_string_length_mismatch_raises[S]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_append_string_length_mismatch_raises[U]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_append_with_append_dim_no_overwrite
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_append_with_append_dim_not_set_raises
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_append_with_existing_encoding_raises
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_append_with_invalid_dim_raises
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_append_with_mode_not_a_raises
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_append_with_mode_rplus_fails
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_append_with_mode_rplus_success
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_append_with_new_variable
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_append_with_no_dims_raises
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_append_write
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_array_type_after_indexing
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_attributes[obj0]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_attributes[obj1]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_auto_chunk
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_avoid_excess_metadata_calls
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_check_encoding_is_consistent_after_append
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_chunk_encoding
Check notice on line 0 in .github
github-actions / Test Results
7357 skipped tests found (test 2211 to 2995)
There are 7357 skipped tests, see "Raw output" for the list of skipped tests 2211 to 2995.
Raw output
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_chunk_encoding_with_dask
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_chunk_encoding_with_larger_dask_chunks
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_chunk_encoding_with_partial_dask_chunks
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_chunked_cftime_datetime
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_chunked_datetime64_or_timedelta64[datetime64[ns]]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_chunked_datetime64_or_timedelta64[timedelta64[ns]]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_compressor_encoding
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_coordinates_encoding
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_dataset_caching
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_dataset_compute
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_default_fill_value
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_deprecate_auto_chunk
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_drop_encoding
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_dropna
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_encoding_chunksizes
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_encoding_kwarg
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_encoding_kwarg_dates
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_encoding_same_dtype
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_explicitly_omit_fill_value
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_group
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_hidden_zarr_keys
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_invalid_dataarray_names_raise
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_isel_dataarray
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_load
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_manual_chunk
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_multiindex_not_implemented
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_no_warning_from_open_emptydim_with_chunks
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_non_existent_store
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_ondisk_after_print
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_open_zarr_use_cftime
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_orthogonal_indexing
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_outer_indexing_reversed
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_pickle
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_pickle_dataarray
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_read_non_consolidated_warning
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_None_variable
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_boolean_dtype
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_consolidated[False]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_consolidated[None]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_consolidated[True]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_coordinates
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_endian
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_float64_data
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_global_coordinates
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_object_dtype
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_string_data
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_test_data
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_roundtrip_timedelta_data
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_save_emptydim[False]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_save_emptydim[True]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_to_zarr_append_compute_false_roundtrip
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_to_zarr_compute_false_roundtrip
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_vectorized_indexing
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_vectorized_indexing_negative_step
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_warning_on_bad_chunks
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_with_chunkstore
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_empty[False-False]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_empty[False-None]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_empty[False-True]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_empty[None-False]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_empty[None-None]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_empty[None-True]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_empty[True-False]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_empty[True-None]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_empty[True-True]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_persistence_modes[None]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_persistence_modes[group1]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_preexisting_override_metadata
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_read_select_write
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[False-False-False-False]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[False-False-False-None]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[False-False-False-True]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[False-False-True-False]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[False-False-True-None]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[False-False-True-True]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[False-True-False-False]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[False-True-False-None]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[False-True-False-True]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[False-True-True-False]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[False-True-True-None]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[False-True-True-True]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[None-False-False-False]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[None-False-False-None]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[None-False-False-True]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[None-False-True-False]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[None-False-True-None]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[None-False-True-True]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[None-True-False-False]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[None-True-False-None]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[None-True-False-True]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[None-True-True-False]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[None-True-True-None]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[None-True-True-True]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[True-False-False-False]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[True-False-False-None]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[True-False-False-True]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[True-False-True-False]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[True-False-True-None]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[True-False-True-True]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[True-True-False-False]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[True-True-False-None]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[True-True-False-True]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[True-True-True-False]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[True-True-True-None]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region[True-True-True-True]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region_errors
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region_mode[None]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region_mode[a]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_region_mode[r+]
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_store
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_write_uneven_dask_chunks
xarray.tests.test_backends.TestZarrWriteEmpty ‑ test_zero_dimensional_variable
xarray.tests.test_backends_api ‑ test__get_default_engine
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_honor_chunks[False-shape0-pref_chunks0]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_honor_chunks[False-shape1-pref_chunks1]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_honor_chunks[False-shape2-pref_chunks2]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_honor_chunks[False-shape3-pref_chunks3]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_honor_chunks[True-shape0-pref_chunks0]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_honor_chunks[True-shape1-pref_chunks1]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_honor_chunks[True-shape2-pref_chunks2]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_honor_chunks[True-shape3-pref_chunks3]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_join_chunks[shape0-pref_chunks0-req_chunks0]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_join_chunks[shape1-pref_chunks1-req_chunks1]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_join_chunks[shape2-pref_chunks2-req_chunks2]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_join_chunks[shape3-pref_chunks3-req_chunks3]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_join_chunks[shape4-pref_chunks4-req_chunks4]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_join_chunks[shape5-pref_chunks5-req_chunks5]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_join_chunks[shape6-pref_chunks6-req_chunks6]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_join_chunks[shape7-pref_chunks7-req_chunks7]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_split_chunks[shape0-pref_chunks0-req_chunks0]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_split_chunks[shape1-pref_chunks1-req_chunks1]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_split_chunks[shape2-pref_chunks2-req_chunks2]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_split_chunks[shape3-pref_chunks3-req_chunks3]
xarray.tests.test_backends_api.TestPreferredChunks ‑ test_split_chunks[shape4-pref_chunks4-req_chunks4]
xarray.tests.test_calendar_ops
xarray.tests.test_cftime_offsets
xarray.tests.test_cftimeindex ‑ test_asi8[360_day]
xarray.tests.test_cftimeindex ‑ test_asi8[365_day]
xarray.tests.test_cftimeindex ‑ test_asi8[366_day]
xarray.tests.test_cftimeindex ‑ test_asi8[all_leap]
xarray.tests.test_cftimeindex ‑ test_asi8[gregorian]
xarray.tests.test_cftimeindex ‑ test_asi8[julian]
xarray.tests.test_cftimeindex ‑ test_asi8[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_asi8_distant_date
xarray.tests.test_cftimeindex ‑ test_asi8_empty_cftimeindex
xarray.tests.test_cftimeindex ‑ test_assert_all_valid_date_type[360_day]
xarray.tests.test_cftimeindex ‑ test_assert_all_valid_date_type[365_day]
xarray.tests.test_cftimeindex ‑ test_assert_all_valid_date_type[366_day]
xarray.tests.test_cftimeindex ‑ test_assert_all_valid_date_type[all_leap]
xarray.tests.test_cftimeindex ‑ test_assert_all_valid_date_type[gregorian]
xarray.tests.test_cftimeindex ‑ test_assert_all_valid_date_type[julian]
xarray.tests.test_cftimeindex ‑ test_assert_all_valid_date_type[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_ceil[360_day]
xarray.tests.test_cftimeindex ‑ test_ceil[365_day]
xarray.tests.test_cftimeindex ‑ test_ceil[366_day]
xarray.tests.test_cftimeindex ‑ test_ceil[all_leap]
xarray.tests.test_cftimeindex ‑ test_ceil[gregorian]
xarray.tests.test_cftimeindex ‑ test_ceil[julian]
xarray.tests.test_cftimeindex ‑ test_ceil[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_cftime_datetime_sub_cftimeindex[360_day]
xarray.tests.test_cftimeindex ‑ test_cftime_datetime_sub_cftimeindex[365_day]
xarray.tests.test_cftimeindex ‑ test_cftime_datetime_sub_cftimeindex[366_day]
xarray.tests.test_cftimeindex ‑ test_cftime_datetime_sub_cftimeindex[all_leap]
xarray.tests.test_cftimeindex ‑ test_cftime_datetime_sub_cftimeindex[gregorian]
xarray.tests.test_cftimeindex ‑ test_cftime_datetime_sub_cftimeindex[julian]
xarray.tests.test_cftimeindex ‑ test_cftime_datetime_sub_cftimeindex[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_add[360_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_add[365_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_add[366_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_add[all_leap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_add[gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_add[julian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_add[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_add_timedeltaindex[360_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_add_timedeltaindex[365_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_add_timedeltaindex[366_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_add_timedeltaindex[all_leap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_add_timedeltaindex[gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_add_timedeltaindex[julian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_add_timedeltaindex[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_calendar_property[360_day-360_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_calendar_property[365_day-noleap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_calendar_property[gregorian-]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_calendar_property[julian-julian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_calendar_property[noleap-noleap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_calendar_property[proleptic_gregorian-proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_calendar_property[standard-]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_calendar_repr[360_day-360_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_calendar_repr[365_day-noleap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_calendar_repr[gregorian-]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_calendar_repr[julian-julian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_calendar_repr[noleap-noleap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_calendar_repr[proleptic_gregorian-proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_calendar_repr[standard-]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_dayofweek_accessor[360_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_dayofweek_accessor[365_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_dayofweek_accessor[366_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_dayofweek_accessor[all_leap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_dayofweek_accessor[gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_dayofweek_accessor[julian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_dayofweek_accessor[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_dayofyear_accessor[360_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_dayofyear_accessor[365_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_dayofyear_accessor[366_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_dayofyear_accessor[all_leap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_dayofyear_accessor[gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_dayofyear_accessor[julian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_dayofyear_accessor[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_days_in_month_accessor[360_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_days_in_month_accessor[365_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_days_in_month_accessor[366_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_days_in_month_accessor[all_leap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_days_in_month_accessor[gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_days_in_month_accessor[julian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_days_in_month_accessor[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[360_day-day-expected2]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[360_day-hour-expected3]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[360_day-microsecond-expected6]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[360_day-minute-expected4]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[360_day-month-expected1]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[360_day-second-expected5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[360_day-year-expected0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[365_day-day-expected2]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[365_day-hour-expected3]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[365_day-microsecond-expected6]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[365_day-minute-expected4]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[365_day-month-expected1]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[365_day-second-expected5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[365_day-year-expected0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[366_day-day-expected2]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[366_day-hour-expected3]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[366_day-microsecond-expected6]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[366_day-minute-expected4]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[366_day-month-expected1]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[366_day-second-expected5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[366_day-year-expected0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[all_leap-day-expected2]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[all_leap-hour-expected3]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[all_leap-microsecond-expected6]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[all_leap-minute-expected4]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[all_leap-month-expected1]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[all_leap-second-expected5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[all_leap-year-expected0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[gregorian-day-expected2]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[gregorian-hour-expected3]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[gregorian-microsecond-expected6]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[gregorian-minute-expected4]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[gregorian-month-expected1]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[gregorian-second-expected5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[gregorian-year-expected0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[julian-day-expected2]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[julian-hour-expected3]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[julian-microsecond-expected6]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[julian-minute-expected4]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[julian-month-expected1]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[julian-second-expected5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[julian-year-expected0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[proleptic_gregorian-day-expected2]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[proleptic_gregorian-hour-expected3]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[proleptic_gregorian-microsecond-expected6]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[proleptic_gregorian-minute-expected4]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[proleptic_gregorian-month-expected1]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[proleptic_gregorian-second-expected5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_field_accessors[proleptic_gregorian-year-expected0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_freq_in_repr[D-360_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_freq_in_repr[D-noleap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_freq_in_repr[D-standard]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_freq_in_repr[h-360_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_freq_in_repr[h-noleap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_freq_in_repr[h-standard]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_freq_property_none_size_lt_3[360_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_freq_property_none_size_lt_3[365_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_freq_property_none_size_lt_3[gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_freq_property_none_size_lt_3[julian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_freq_property_none_size_lt_3[noleap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_freq_property_none_size_lt_3[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_freq_property_none_size_lt_3[standard]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_periods_repr[2]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_periods_repr[40]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_radd[360_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_radd[365_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_radd[366_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_radd[all_leap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_radd[gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_radd[julian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_radd[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_101_shorter[100]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_101_shorter[22]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_101_shorter[50]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_formatting[101-CFTimeIndex([2000-01-01 00:00:00, 2000-01-02 00:00:00, 2000-01-03 00:00:00,\n 2000-01-04 00:00:00, 2000-01-05 00:00:00, 2000-01-06 00:00:00,\n 2000-01-07 00:00:00, 2000-01-08 00:00:00, 2000-01-09 00:00:00,\n 2000-01-10 00:00:00,\n ...\n 2000-04-01 00:00:00, 2000-04-02 00:00:00, 2000-04-03 00:00:00,\n 2000-04-04 00:00:00, 2000-04-05 00:00:00, 2000-04-06 00:00:00,\n 2000-04-07 00:00:00, 2000-04-08 00:00:00, 2000-04-09 00:00:00,\n 2000-04-10 00:00:00],\n dtype='object', length=101, calendar='', freq='D')]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_formatting[2-CFTimeIndex([2000-01-01 00:00:00, 2000-01-02 00:00:00],\n dtype='object', length=2, calendar='', freq=None)]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_formatting[4-CFTimeIndex([2000-01-01 00:00:00, 2000-01-02 00:00:00, 2000-01-03 00:00:00,\n 2000-01-04 00:00:00],\n dtype='object', length=4, calendar='', freq='D')]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_formatting_width[100-100]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_formatting_width[100-40]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_formatting_width[100-80]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_formatting_width[101-100]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_formatting_width[101-40]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_formatting_width[101-80]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_formatting_width[2-100]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_formatting_width[2-40]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_formatting_width[2-80]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_formatting_width[3-100]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_formatting_width[3-40]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_formatting_width[3-80]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_formatting_width[4-100]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_formatting_width[4-40]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_repr_formatting_width[4-80]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_rsub[360_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_rsub[365_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_rsub[366_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_rsub[all_leap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_rsub[gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_rsub[julian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_rsub[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift[360_day-D]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift[360_day-freq1]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift[365_day-D]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift[365_day-freq1]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift[366_day-D]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift[366_day-freq1]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift[all_leap-D]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift[all_leap-freq1]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift[gregorian-D]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift[gregorian-freq1]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift[julian-D]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift[julian-freq1]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift[proleptic_gregorian-D]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift[proleptic_gregorian-freq1]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[360_day-D-D-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[360_day-D-D-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[360_day-h-h-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[360_day-h-h-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[360_day-min-min-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[360_day-min-min-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[360_day-ms-ms-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[360_day-ms-ms-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[360_day-s-s-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[360_day-s-s-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[365_day-D-D-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[365_day-D-D-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[365_day-h-h-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[365_day-h-h-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[365_day-min-min-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[365_day-min-min-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[365_day-ms-ms-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[365_day-ms-ms-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[365_day-s-s-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[365_day-s-s-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[366_day-D-D-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[366_day-D-D-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[366_day-h-h-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[366_day-h-h-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[366_day-min-min-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[366_day-min-min-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[366_day-ms-ms-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[366_day-ms-ms-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[366_day-s-s-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[366_day-s-s-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[all_leap-D-D-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[all_leap-D-D-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[all_leap-h-h-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[all_leap-h-h-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[all_leap-min-min-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[all_leap-min-min-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[all_leap-ms-ms-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[all_leap-ms-ms-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[all_leap-s-s-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[all_leap-s-s-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[gregorian-D-D-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[gregorian-D-D-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[gregorian-h-h-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[gregorian-h-h-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[gregorian-min-min-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[gregorian-min-min-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[gregorian-ms-ms-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[gregorian-ms-ms-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[gregorian-s-s-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[gregorian-s-s-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[julian-D-D-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[julian-D-D-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[julian-h-h-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[julian-h-h-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[julian-min-min-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[julian-min-min-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[julian-ms-ms-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[julian-ms-ms-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[julian-s-s-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[julian-s-s-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[proleptic_gregorian-D-D-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[proleptic_gregorian-D-D-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[proleptic_gregorian-h-h-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[proleptic_gregorian-h-h-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[proleptic_gregorian-min-min-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[proleptic_gregorian-min-min-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[proleptic_gregorian-ms-ms-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[proleptic_gregorian-ms-ms-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[proleptic_gregorian-s-s-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[proleptic_gregorian-s-s-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float_fails_for_non_tick_freqs[ME]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float_fails_for_non_tick_freqs[MS]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float_fails_for_non_tick_freqs[QE]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float_fails_for_non_tick_freqs[QS]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float_fails_for_non_tick_freqs[YS]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float_fails_for_non_tick_freqs[Y]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float_us
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_invalid_freq
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_invalid_n
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_cftime_datetime[360_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_cftime_datetime[365_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_cftime_datetime[366_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_cftime_datetime[all_leap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_cftime_datetime[gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_cftime_datetime[julian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_cftime_datetime[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_cftimeindex[360_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_cftimeindex[365_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_cftimeindex[366_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_cftimeindex[all_leap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_cftimeindex[gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_cftimeindex[julian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_cftimeindex[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_index_of_cftime_datetimes[360_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_index_of_cftime_datetimes[365_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_index_of_cftime_datetimes[366_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_index_of_cftime_datetimes[all_leap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_index_of_cftime_datetimes[gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_index_of_cftime_datetimes[julian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_index_of_cftime_datetimes[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_not_implemented[360_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_not_implemented[365_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_not_implemented[366_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_not_implemented[all_leap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_not_implemented[gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_not_implemented[julian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_not_implemented[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta[360_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta[365_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta[366_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta[all_leap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta[gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta[julian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta_array[360_day-1d-array]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta_array[360_day-scalar-array]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta_array[365_day-1d-array]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta_array[365_day-scalar-array]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta_array[366_day-1d-array]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta_array[366_day-scalar-array]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta_array[all_leap-1d-array]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta_array[all_leap-scalar-array]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta_array[gregorian-1d-array]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta_array[gregorian-scalar-array]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta_array[julian-1d-array]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta_array[julian-scalar-array]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta_array[proleptic_gregorian-1d-array]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedelta_array[proleptic_gregorian-scalar-array]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedeltaindex[360_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedeltaindex[365_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedeltaindex[366_day]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedeltaindex[all_leap]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedeltaindex[gregorian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedeltaindex[julian]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_sub_timedeltaindex[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_concat_cftimeindex[360_day]
xarray.tests.test_cftimeindex ‑ test_concat_cftimeindex[365_day]
xarray.tests.test_cftimeindex ‑ test_concat_cftimeindex[366_day]
xarray.tests.test_cftimeindex ‑ test_concat_cftimeindex[all_leap]
xarray.tests.test_cftimeindex ‑ test_concat_cftimeindex[gregorian]
xarray.tests.test_cftimeindex ‑ test_concat_cftimeindex[julian]
xarray.tests.test_cftimeindex ‑ test_concat_cftimeindex[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_constructor_with_name[360_day-None-foo]
xarray.tests.test_cftimeindex ‑ test_constructor_with_name[360_day-bar-bar]
xarray.tests.test_cftimeindex ‑ test_constructor_with_name[365_day-None-foo]
xarray.tests.test_cftimeindex ‑ test_constructor_with_name[365_day-bar-bar]
xarray.tests.test_cftimeindex ‑ test_constructor_with_name[366_day-None-foo]
xarray.tests.test_cftimeindex ‑ test_constructor_with_name[366_day-bar-bar]
xarray.tests.test_cftimeindex ‑ test_constructor_with_name[all_leap-None-foo]
xarray.tests.test_cftimeindex ‑ test_constructor_with_name[all_leap-bar-bar]
xarray.tests.test_cftimeindex ‑ test_constructor_with_name[gregorian-None-foo]
xarray.tests.test_cftimeindex ‑ test_constructor_with_name[gregorian-bar-bar]
xarray.tests.test_cftimeindex ‑ test_constructor_with_name[julian-None-foo]
xarray.tests.test_cftimeindex ‑ test_constructor_with_name[julian-bar-bar]
xarray.tests.test_cftimeindex ‑ test_constructor_with_name[proleptic_gregorian-None-foo]
xarray.tests.test_cftimeindex ‑ test_constructor_with_name[proleptic_gregorian-bar-bar]
xarray.tests.test_cftimeindex ‑ test_contains[360_day]
xarray.tests.test_cftimeindex ‑ test_contains[365_day]
xarray.tests.test_cftimeindex ‑ test_contains[366_day]
xarray.tests.test_cftimeindex ‑ test_contains[all_leap]
xarray.tests.test_cftimeindex ‑ test_contains[gregorian]
xarray.tests.test_cftimeindex ‑ test_contains[julian]
xarray.tests.test_cftimeindex ‑ test_contains[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_date_type_property[360_day]
xarray.tests.test_cftimeindex ‑ test_date_type_property[365_day]
xarray.tests.test_cftimeindex ‑ test_date_type_property[366_day]
xarray.tests.test_cftimeindex ‑ test_date_type_property[all_leap]
xarray.tests.test_cftimeindex ‑ test_date_type_property[gregorian]
xarray.tests.test_cftimeindex ‑ test_date_type_property[julian]
xarray.tests.test_cftimeindex ‑ test_date_type_property[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_distant_cftime_datetime_sub_cftimeindex[360_day]
xarray.tests.test_cftimeindex ‑ test_distant_cftime_datetime_sub_cftimeindex[365_day]
xarray.tests.test_cftimeindex ‑ test_distant_cftime_datetime_sub_cftimeindex[366_day]
xarray.tests.test_cftimeindex ‑ test_distant_cftime_datetime_sub_cftimeindex[all_leap]
xarray.tests.test_cftimeindex ‑ test_distant_cftime_datetime_sub_cftimeindex[gregorian]
xarray.tests.test_cftimeindex ‑ test_distant_cftime_datetime_sub_cftimeindex[julian]
xarray.tests.test_cftimeindex ‑ test_distant_cftime_datetime_sub_cftimeindex[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_empty_cftimeindex
xarray.tests.test_cftimeindex ‑ test_empty_cftimeindex_calendar_property
xarray.tests.test_cftimeindex ‑ test_empty_cftimeindex_field_accessors[day]
xarray.tests.test_cftimeindex ‑ test_empty_cftimeindex_field_accessors[dayofweek]
xarray.tests.test_cftimeindex ‑ test_empty_cftimeindex_field_accessors[dayofyear]
xarray.tests.test_cftimeindex ‑ test_empty_cftimeindex_field_accessors[days_in_month]
xarray.tests.test_cftimeindex ‑ test_empty_cftimeindex_field_accessors[hour]
xarray.tests.test_cftimeindex ‑ test_empty_cftimeindex_field_accessors[microsecond]
xarray.tests.test_cftimeindex ‑ test_empty_cftimeindex_field_accessors[minute]
xarray.tests.test_cftimeindex ‑ test_empty_cftimeindex_field_accessors[month]
xarray.tests.test_cftimeindex ‑ test_empty_cftimeindex_field_accessors[second]
xarray.tests.test_cftimeindex ‑ test_empty_cftimeindex_field_accessors[year]
xarray.tests.test_cftimeindex ‑ test_floor[360_day]
xarray.tests.test_cftimeindex ‑ test_floor[365_day]
xarray.tests.test_cftimeindex ‑ test_floor[366_day]
xarray.tests.test_cftimeindex ‑ test_floor[all_leap]
xarray.tests.test_cftimeindex ‑ test_floor[gregorian]
xarray.tests.test_cftimeindex ‑ test_floor[julian]
xarray.tests.test_cftimeindex ‑ test_floor[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_get_loc[360_day]
xarray.tests.test_cftimeindex ‑ test_get_loc[365_day]
xarray.tests.test_cftimeindex ‑ test_get_loc[366_day]
xarray.tests.test_cftimeindex ‑ test_get_loc[all_leap]
xarray.tests.test_cftimeindex ‑ test_get_loc[gregorian]
xarray.tests.test_cftimeindex ‑ test_get_loc[julian]
xarray.tests.test_cftimeindex ‑ test_get_loc[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound[360_day]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound[365_day]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound[366_day]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound[all_leap]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound[gregorian]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound[julian]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound_decreasing_index[360_day]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound_decreasing_index[365_day]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound_decreasing_index[366_day]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound_decreasing_index[all_leap]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound_decreasing_index[gregorian]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound_decreasing_index[julian]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound_decreasing_index[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound_length_one_index[360_day]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound_length_one_index[365_day]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound_length_one_index[366_day]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound_length_one_index[all_leap]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound_length_one_index[gregorian]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound_length_one_index[julian]
xarray.tests.test_cftimeindex ‑ test_get_slice_bound_length_one_index[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_groupby[360_day]
xarray.tests.test_cftimeindex ‑ test_groupby[365_day]
xarray.tests.test_cftimeindex ‑ test_groupby[366_day]
xarray.tests.test_cftimeindex ‑ test_groupby[all_leap]
xarray.tests.test_cftimeindex ‑ test_groupby[gregorian]
xarray.tests.test_cftimeindex ‑ test_groupby[julian]
xarray.tests.test_cftimeindex ‑ test_groupby[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_indexing_in_dataframe_iloc[360_day]
xarray.tests.test_cftimeindex ‑ test_indexing_in_dataframe_iloc[365_day]
xarray.tests.test_cftimeindex ‑ test_indexing_in_dataframe_iloc[366_day]
xarray.tests.test_cftimeindex ‑ test_indexing_in_dataframe_iloc[all_leap]
xarray.tests.test_cftimeindex ‑ test_indexing_in_dataframe_iloc[gregorian]
xarray.tests.test_cftimeindex ‑ test_indexing_in_dataframe_iloc[julian]
xarray.tests.test_cftimeindex ‑ test_indexing_in_dataframe_iloc[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_indexing_in_dataframe_loc[360_day]
xarray.tests.test_cftimeindex ‑ test_indexing_in_dataframe_loc[365_day]
xarray.tests.test_cftimeindex ‑ test_indexing_in_dataframe_loc[366_day]
xarray.tests.test_cftimeindex ‑ test_indexing_in_dataframe_loc[all_leap]
xarray.tests.test_cftimeindex ‑ test_indexing_in_dataframe_loc[gregorian]
xarray.tests.test_cftimeindex ‑ test_indexing_in_dataframe_loc[julian]
xarray.tests.test_cftimeindex ‑ test_indexing_in_dataframe_loc[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_getitem[360_day]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_getitem[365_day]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_getitem[366_day]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_getitem[all_leap]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_getitem[gregorian]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_getitem[julian]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_getitem[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_iloc[360_day]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_iloc[365_day]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_iloc[366_day]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_iloc[all_leap]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_iloc[gregorian]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_iloc[julian]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_iloc[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_loc[360_day]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_loc[365_day]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_loc[366_day]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_loc[all_leap]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_loc[gregorian]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_loc[julian]
xarray.tests.test_cftimeindex ‑ test_indexing_in_series_loc[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_infer_freq[360_day-2YS-FEB]
xarray.tests.test_cftimeindex ‑ test_infer_freq[360_day-300YS-JAN]
xarray.tests.test_cftimeindex ‑ test_infer_freq[360_day-30h]
xarray.tests.test_cftimeindex ‑ test_infer_freq[360_day-3QS-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[360_day-40s]
xarray.tests.test_cftimeindex ‑ test_infer_freq[360_day-4ME]
xarray.tests.test_cftimeindex ‑ test_infer_freq[360_day-5min]
xarray.tests.test_cftimeindex ‑ test_infer_freq[360_day-7D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[360_day-D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[360_day-MS]
xarray.tests.test_cftimeindex ‑ test_infer_freq[360_day-QE-NOV]
xarray.tests.test_cftimeindex ‑ test_infer_freq[360_day-YE-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[360_day-YS-JUL]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-2YS-FEB]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-300YS-JAN]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-30h]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-3QS-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-40s]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-4ME]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-5min]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-7D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-MS]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-QE-NOV]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-YE-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-YS-JUL]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-2YS-FEB]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-300YS-JAN]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-30h]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-3QS-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-40s]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-4ME]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-5min]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-7D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-MS]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-QE-NOV]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-YE-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-YS-JUL]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-2YS-FEB]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-300YS-JAN]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-30h]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-3QS-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-40s]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-4ME]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-5min]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-7D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-MS]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-QE-NOV]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-YE-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-YS-JUL]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-2YS-FEB]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-300YS-JAN]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-30h]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-3QS-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-40s]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-4ME]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-5min]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-7D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-MS]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-QE-NOV]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-YE-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-YS-JUL]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-2YS-FEB]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-300YS-JAN]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-30h]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-3QS-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-40s]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-4ME]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-5min]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-7D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-MS]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-QE-NOV]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-YE-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-YS-JUL]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-2YS-FEB]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-300YS-JAN]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-30h]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-3QS-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-40s]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-4ME]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-5min]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-7D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-MS]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-QE-NOV]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-YE-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-YS-JUL]
xarray.tests.test_cftimeindex ‑ test_infer_freq_invalid_inputs
xarray.tests.test_cftimeindex ‑ test_infer_freq_valid_types
xarray.tests.test_cftimeindex ‑ test_isel[360_day]
xarray.tests.test_cftimeindex ‑ test_isel[365_day]
xarray.tests.test_cftimeindex ‑ test_isel[366_day]
xarray.tests.test_cftimeindex ‑ test_isel[all_leap]
xarray.tests.test_cftimeindex ‑ test_isel[gregorian]
xarray.tests.test_cftimeindex ‑ test_isel[julian]
xarray.tests.test_cftimeindex ‑ test_isel[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_multiindex
xarray.tests.test_cftimeindex ‑ test_parse_array_of_cftime_strings
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[360_day-1999-date_args0-year]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[360_day-199902-date_args1-month]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[360_day-19990202-date_args2-day]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[360_day-19990202T01-date_args3-hour]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[360_day-19990202T0101-date_args4-minute]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[360_day-19990202T010156-date_args5-second]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[365_day-1999-date_args0-year]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[365_day-199902-date_args1-month]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[365_day-19990202-date_args2-day]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[365_day-19990202T01-date_args3-hour]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[365_day-19990202T0101-date_args4-minute]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[365_day-19990202T010156-date_args5-second]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[366_day-1999-date_args0-year]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[366_day-199902-date_args1-month]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[366_day-19990202-date_args2-day]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[366_day-19990202T01-date_args3-hour]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[366_day-19990202T0101-date_args4-minute]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[366_day-19990202T010156-date_args5-second]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[all_leap-1999-date_args0-year]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[all_leap-199902-date_args1-month]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[all_leap-19990202-date_args2-day]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[all_leap-19990202T01-date_args3-hour]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[all_leap-19990202T0101-date_args4-minute]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[all_leap-19990202T010156-date_args5-second]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[gregorian-1999-date_args0-year]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[gregorian-199902-date_args1-month]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[gregorian-19990202-date_args2-day]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[gregorian-19990202T01-date_args3-hour]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[gregorian-19990202T0101-date_args4-minute]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[gregorian-19990202T010156-date_args5-second]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[julian-1999-date_args0-year]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[julian-199902-date_args1-month]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[julian-19990202-date_args2-day]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[julian-19990202T01-date_args3-hour]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[julian-19990202T0101-date_args4-minute]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[julian-19990202T010156-date_args5-second]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[proleptic_gregorian-1999-date_args0-year]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[proleptic_gregorian-199902-date_args1-month]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[proleptic_gregorian-19990202-date_args2-day]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[proleptic_gregorian-19990202T01-date_args3-hour]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[proleptic_gregorian-19990202T0101-date_args4-minute]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_with_reso[proleptic_gregorian-19990202T010156-date_args5-second]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_month_dec[360_day]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_month_dec[365_day]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_month_dec[366_day]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_month_dec[all_leap]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_month_dec[gregorian]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_month_dec[julian]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_month_dec[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_month_feb[360_day]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_month_feb[365_day]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_month_feb[366_day]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_month_feb[all_leap]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_month_feb[gregorian]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_month_feb[julian]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_month_feb[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_year[360_day]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_year[365_day]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_year[366_day]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_year[all_leap]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_year[gregorian]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_year[julian]
xarray.tests.test_cftimeindex ‑ test_parse_string_to_bounds_year[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_raises[360_day]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_raises[365_day]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_raises[366_day]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_raises[all_leap]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_raises[gregorian]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_raises[julian]
Check notice on line 0 in .github
github-actions / Test Results
7357 skipped tests found (test 2996 to 3715)
There are 7357 skipped tests, see "Raw output" for the list of skipped tests 2996 to 3715.
Raw output
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_raises[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[360_day-day-ex_start_args0-ex_end_args0]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[360_day-hour-ex_start_args1-ex_end_args1]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[360_day-minute-ex_start_args2-ex_end_args2]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[360_day-second-ex_start_args3-ex_end_args3]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[365_day-day-ex_start_args0-ex_end_args0]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[365_day-hour-ex_start_args1-ex_end_args1]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[365_day-minute-ex_start_args2-ex_end_args2]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[365_day-second-ex_start_args3-ex_end_args3]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[366_day-day-ex_start_args0-ex_end_args0]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[366_day-hour-ex_start_args1-ex_end_args1]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[366_day-minute-ex_start_args2-ex_end_args2]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[366_day-second-ex_start_args3-ex_end_args3]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[all_leap-day-ex_start_args0-ex_end_args0]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[all_leap-hour-ex_start_args1-ex_end_args1]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[all_leap-minute-ex_start_args2-ex_end_args2]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[all_leap-second-ex_start_args3-ex_end_args3]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[gregorian-day-ex_start_args0-ex_end_args0]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[gregorian-hour-ex_start_args1-ex_end_args1]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[gregorian-minute-ex_start_args2-ex_end_args2]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[gregorian-second-ex_start_args3-ex_end_args3]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[julian-day-ex_start_args0-ex_end_args0]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[julian-hour-ex_start_args1-ex_end_args1]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[julian-minute-ex_start_args2-ex_end_args2]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[julian-second-ex_start_args3-ex_end_args3]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[proleptic_gregorian-day-ex_start_args0-ex_end_args0]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[proleptic_gregorian-hour-ex_start_args1-ex_end_args1]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[proleptic_gregorian-minute-ex_start_args2-ex_end_args2]
xarray.tests.test_cftimeindex ‑ test_parsed_string_to_bounds_sub_monthly[proleptic_gregorian-second-ex_start_args3-ex_end_args3]
xarray.tests.test_cftimeindex ‑ test_pickle_cftimeindex[360_day]
xarray.tests.test_cftimeindex ‑ test_pickle_cftimeindex[365_day]
xarray.tests.test_cftimeindex ‑ test_pickle_cftimeindex[366_day]
xarray.tests.test_cftimeindex ‑ test_pickle_cftimeindex[all_leap]
xarray.tests.test_cftimeindex ‑ test_pickle_cftimeindex[gregorian]
xarray.tests.test_cftimeindex ‑ test_pickle_cftimeindex[julian]
xarray.tests.test_cftimeindex ‑ test_pickle_cftimeindex[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_round[360_day]
xarray.tests.test_cftimeindex ‑ test_round[365_day]
xarray.tests.test_cftimeindex ‑ test_round[366_day]
xarray.tests.test_cftimeindex ‑ test_round[all_leap]
xarray.tests.test_cftimeindex ‑ test_round[gregorian]
xarray.tests.test_cftimeindex ‑ test_round[julian]
xarray.tests.test_cftimeindex ‑ test_round[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_rounding_methods_against_datetimeindex[ceil-2h]
xarray.tests.test_cftimeindex ‑ test_rounding_methods_against_datetimeindex[ceil-33min]
xarray.tests.test_cftimeindex ‑ test_rounding_methods_against_datetimeindex[ceil-3663s]
xarray.tests.test_cftimeindex ‑ test_rounding_methods_against_datetimeindex[floor-2h]
xarray.tests.test_cftimeindex ‑ test_rounding_methods_against_datetimeindex[floor-33min]
xarray.tests.test_cftimeindex ‑ test_rounding_methods_against_datetimeindex[floor-3663s]
xarray.tests.test_cftimeindex ‑ test_rounding_methods_against_datetimeindex[round-2h]
xarray.tests.test_cftimeindex ‑ test_rounding_methods_against_datetimeindex[round-33min]
xarray.tests.test_cftimeindex ‑ test_rounding_methods_against_datetimeindex[round-3663s]
xarray.tests.test_cftimeindex ‑ test_rounding_methods_empty_cftimindex[ceil]
xarray.tests.test_cftimeindex ‑ test_rounding_methods_empty_cftimindex[floor]
xarray.tests.test_cftimeindex ‑ test_rounding_methods_empty_cftimindex[round]
xarray.tests.test_cftimeindex ‑ test_rounding_methods_invalid_freq[ceil]
xarray.tests.test_cftimeindex ‑ test_rounding_methods_invalid_freq[floor]
xarray.tests.test_cftimeindex ‑ test_rounding_methods_invalid_freq[round]
xarray.tests.test_cftimeindex ‑ test_sel_date_distant_date[360_day]
xarray.tests.test_cftimeindex ‑ test_sel_date_distant_date[365_day]
xarray.tests.test_cftimeindex ‑ test_sel_date_distant_date[366_day]
xarray.tests.test_cftimeindex ‑ test_sel_date_distant_date[all_leap]
xarray.tests.test_cftimeindex ‑ test_sel_date_distant_date[gregorian]
xarray.tests.test_cftimeindex ‑ test_sel_date_distant_date[julian]
xarray.tests.test_cftimeindex ‑ test_sel_date_distant_date[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_backfill[360_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_backfill[360_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_backfill[365_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_backfill[365_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_backfill[366_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_backfill[366_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_backfill[all_leap-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_backfill[all_leap-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_backfill[gregorian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_backfill[gregorian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_backfill[julian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_backfill[julian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_backfill[proleptic_gregorian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_backfill[proleptic_gregorian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_nearest[360_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_nearest[360_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_nearest[365_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_nearest[365_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_nearest[366_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_nearest[366_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_nearest[all_leap-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_nearest[all_leap-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_nearest[gregorian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_nearest[gregorian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_nearest[julian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_nearest[julian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_nearest[proleptic_gregorian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_nearest[proleptic_gregorian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_pad[360_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_pad[360_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_pad[365_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_pad[365_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_pad[366_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_pad[366_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_pad[all_leap-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_pad[all_leap-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_pad[gregorian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_pad[gregorian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_pad[julian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_pad[julian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_pad[proleptic_gregorian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_pad[proleptic_gregorian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[360_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[360_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[360_day-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[365_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[365_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[365_day-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[366_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[366_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[366_day-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[all_leap-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[all_leap-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[all_leap-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[gregorian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[gregorian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[gregorian-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[julian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[julian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[julian-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[proleptic_gregorian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[proleptic_gregorian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_list_tolerance_raises[proleptic_gregorian-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar[360_day]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar[365_day]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar[366_day]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar[all_leap]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar[gregorian]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar[julian]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_backfill[360_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_backfill[360_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_backfill[365_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_backfill[365_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_backfill[366_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_backfill[366_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_backfill[all_leap-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_backfill[all_leap-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_backfill[gregorian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_backfill[gregorian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_backfill[julian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_backfill[julian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_backfill[proleptic_gregorian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_backfill[proleptic_gregorian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[360_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[360_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[360_day-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[365_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[365_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[365_day-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[366_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[366_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[366_day-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[all_leap-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[all_leap-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[all_leap-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[gregorian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[gregorian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[gregorian-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[julian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[julian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[julian-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[proleptic_gregorian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[proleptic_gregorian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_nearest[proleptic_gregorian-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_pad[360_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_pad[360_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_pad[365_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_pad[365_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_pad[366_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_pad[366_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_pad[all_leap-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_pad[all_leap-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_pad[gregorian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_pad[gregorian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_pad[julian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_pad[julian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_pad[proleptic_gregorian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_pad[proleptic_gregorian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[360_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[360_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[360_day-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[365_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[365_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[365_day-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[366_day-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[366_day-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[366_day-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[all_leap-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[all_leap-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[all_leap-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[gregorian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[gregorian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[gregorian-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[julian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[julian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[julian-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[proleptic_gregorian-sel_kwargs0]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[proleptic_gregorian-sel_kwargs1]
xarray.tests.test_cftimeindex ‑ test_sel_date_scalar_tolerance_raises[proleptic_gregorian-sel_kwargs2]
xarray.tests.test_cftimeindex ‑ test_sel_date_slice_or_list[360_day]
xarray.tests.test_cftimeindex ‑ test_sel_date_slice_or_list[365_day]
xarray.tests.test_cftimeindex ‑ test_sel_date_slice_or_list[366_day]
xarray.tests.test_cftimeindex ‑ test_sel_date_slice_or_list[all_leap]
xarray.tests.test_cftimeindex ‑ test_sel_date_slice_or_list[gregorian]
xarray.tests.test_cftimeindex ‑ test_sel_date_slice_or_list[julian]
xarray.tests.test_cftimeindex ‑ test_sel_date_slice_or_list[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[360_day-bool-list]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[360_day-string-slice]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[360_day-string]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[365_day-bool-list]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[365_day-string-slice]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[365_day-string]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[366_day-bool-list]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[366_day-string-slice]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[366_day-string]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[all_leap-bool-list]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[all_leap-string-slice]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[all_leap-string]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[gregorian-bool-list]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[gregorian-string-slice]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[gregorian-string]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[julian-bool-list]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[julian-string-slice]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[julian-string]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[proleptic_gregorian-bool-list]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[proleptic_gregorian-string-slice]
xarray.tests.test_cftimeindex ‑ test_sel_string_or_list[proleptic_gregorian-string]
xarray.tests.test_cftimeindex ‑ test_series_dropna[360_day]
xarray.tests.test_cftimeindex ‑ test_series_dropna[365_day]
xarray.tests.test_cftimeindex ‑ test_series_dropna[366_day]
xarray.tests.test_cftimeindex ‑ test_series_dropna[all_leap]
xarray.tests.test_cftimeindex ‑ test_series_dropna[gregorian]
xarray.tests.test_cftimeindex ‑ test_series_dropna[julian]
xarray.tests.test_cftimeindex ‑ test_series_dropna[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_strftime_of_cftime_array[360_day]
xarray.tests.test_cftimeindex ‑ test_strftime_of_cftime_array[365_day]
xarray.tests.test_cftimeindex ‑ test_strftime_of_cftime_array[366_day]
xarray.tests.test_cftimeindex ‑ test_strftime_of_cftime_array[all_leap]
xarray.tests.test_cftimeindex ‑ test_strftime_of_cftime_array[gregorian]
xarray.tests.test_cftimeindex ‑ test_strftime_of_cftime_array[julian]
xarray.tests.test_cftimeindex ‑ test_strftime_of_cftime_array[noleap]
xarray.tests.test_cftimeindex ‑ test_strftime_of_cftime_array[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_strftime_of_cftime_array[standard]
xarray.tests.test_cftimeindex ‑ test_string_slice_length_one_index[360_day]
xarray.tests.test_cftimeindex ‑ test_string_slice_length_one_index[365_day]
xarray.tests.test_cftimeindex ‑ test_string_slice_length_one_index[366_day]
xarray.tests.test_cftimeindex ‑ test_string_slice_length_one_index[all_leap]
xarray.tests.test_cftimeindex ‑ test_string_slice_length_one_index[gregorian]
xarray.tests.test_cftimeindex ‑ test_string_slice_length_one_index[julian]
xarray.tests.test_cftimeindex ‑ test_string_slice_length_one_index[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_timedeltaindex_add_cftimeindex[360_day]
xarray.tests.test_cftimeindex ‑ test_timedeltaindex_add_cftimeindex[365_day]
xarray.tests.test_cftimeindex ‑ test_timedeltaindex_add_cftimeindex[366_day]
xarray.tests.test_cftimeindex ‑ test_timedeltaindex_add_cftimeindex[all_leap]
xarray.tests.test_cftimeindex ‑ test_timedeltaindex_add_cftimeindex[gregorian]
xarray.tests.test_cftimeindex ‑ test_timedeltaindex_add_cftimeindex[julian]
xarray.tests.test_cftimeindex ‑ test_timedeltaindex_add_cftimeindex[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex[False-360_day]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex[False-365_day]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex[False-366_day]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex[False-all_leap]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex[False-gregorian]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex[False-julian]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex[False-noleap]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex[False-proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex[False-standard]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex[True-360_day]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex[True-365_day]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex[True-366_day]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex[True-all_leap]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex[True-gregorian]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex[True-julian]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex[True-noleap]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex[True-proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex[True-standard]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex_feb_29[360_day]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex_feb_29[all_leap]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex_out_of_range[360_day]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex_out_of_range[365_day]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex_out_of_range[366_day]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex_out_of_range[all_leap]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex_out_of_range[gregorian]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex_out_of_range[julian]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex_out_of_range[noleap]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex_out_of_range[proleptic_gregorian]
xarray.tests.test_cftimeindex ‑ test_to_datetimeindex_out_of_range[standard]
xarray.tests.test_cftimeindex_resample
xarray.tests.test_coarsen ‑ test_coarsen_absent_dims_error[1-dask]
xarray.tests.test_coarsen ‑ test_coarsen_coords[1-dask-False]
xarray.tests.test_coarsen ‑ test_coarsen_coords[1-dask-True]
xarray.tests.test_coarsen ‑ test_coarsen_coords_cftime
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-max-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-max-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-max-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-max-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-max-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-max-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-max-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-max-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-mean-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-mean-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-mean-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-mean-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-mean-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-mean-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-mean-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-mean-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-std-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-std-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-std-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-std-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-std-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-std-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-std-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-std-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-sum-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-sum-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-sum-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-sum-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-sum-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-sum-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-sum-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-sum-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-max-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-mean-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-std-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-sum-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_dataset[1-dask-pad-right-False]
xarray.tests.test_coarsen ‑ test_coarsen_dataset[1-dask-pad-right-True]
xarray.tests.test_coarsen ‑ test_coarsen_dataset[1-dask-trim-left-False]
xarray.tests.test_coarsen ‑ test_coarsen_dataset[1-dask-trim-left-True]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-max-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-max-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-max-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-max-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-max-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-max-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-max-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-max-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-mean-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-mean-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-mean-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-mean-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-mean-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-mean-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-mean-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-mean-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-median-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-median-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-median-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-median-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-median-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-median-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-median-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-median-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-min-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-min-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-min-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-min-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-min-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-min-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-min-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-min-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-std-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-std-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-std-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-std-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-std-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-std-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-std-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-std-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-sum-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-sum-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-sum-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-sum-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-sum-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-sum-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-sum-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-sum-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-var-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-var-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-var-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-var-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-var-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-var-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-var-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[dask-var-4-2]
xarray.tests.test_coding ‑ test_CFMaskCoder_decode_dask
xarray.tests.test_coding_strings ‑ test_EncodedStringCoder_decode_dask
xarray.tests.test_coding_strings ‑ test_bytes_to_char_dask
xarray.tests.test_coding_strings ‑ test_char_to_bytes_dask
xarray.tests.test_coding_times ‑ test__encode_datetime_with_cftime
xarray.tests.test_coding_times ‑ test_cf_datetime[0-days since 1000-01-01-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[0-days since 1000-01-01-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[0-days since 1000-01-01-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[0-microseconds since 2000-01-01T00:00:00-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[0-microseconds since 2000-01-01T00:00:00-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[0-microseconds since 2000-01-01T00:00:00-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[0-milliseconds since 2000-01-01T00:00:00-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[0-milliseconds since 2000-01-01T00:00:00-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[0-milliseconds since 2000-01-01T00:00:00-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[10-days since 2000-01-01-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[10-days since 2000-01-01-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[10-days since 2000-01-01-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[164374.5-days since 1850-01-01 00:00:00-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[164374.5-days since 1850-01-01 00:00:00-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[164374.5-days since 1850-01-01 00:00:00-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[164375-days since 1850-01-01 00:00:00-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[164375-days since 1850-01-01 00:00:00-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[164375-days since 1850-01-01 00:00:00-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[17093352.0-hours since 1-1-1 00:00:0.0-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[17093352.0-hours since 1-1-1 00:00:0.0-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[17093352.0-hours since 1-1-1 00:00:0.0-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates0-days since 2000-01-01-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates1-days since 2000-01-01-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates10-days since 2000-01-01-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates11-days since 2000-01-01-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates12-hours since 1680-01-01 00:00:00-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates13-hours since 1680-01-01 00:00:00-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates14-hours since 1680-01-01 00:00:00-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates15-hour since 1680-01-01 00:00:00-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates16-hour since 1680-01-01 00:00:00-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates17-hour since 1680-01-01 00:00:00-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates18-Hour since 1680-01-01 00:00:00-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates19-Hour since 1680-01-01 00:00:00-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates2-days since 2000-01-01-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates20-Hour since 1680-01-01 00:00:00-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates21- Hour since 1680-01-01 00:00:00 -gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates22- Hour since 1680-01-01 00:00:00 -proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates23- Hour since 1680-01-01 00:00:00 -standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates27-daYs since 2000-01-01-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates28-daYs since 2000-01-01-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates29-daYs since 2000-01-01-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates3-days since 2000-01-01-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates30-days since 2000-01-01-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates31-days since 2000-01-01-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates32-days since 2000-01-01-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates33-days since 2000-01-01-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates34-days since 2000-01-01-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates35-days since 2000-01-01-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates36-days since 2000-01-01-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates37-days since 2000-01-01-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates38-days since 2000-01-01-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates4-days since 2000-01-01-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates42-days since 1000-01-01-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates43-days since 1000-01-01-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates44-days since 1000-01-01-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates45-days since 1000-01-01-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates46-days since 1000-01-01-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates47-days since 1000-01-01-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates48-days since 1000-01-01-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates49-days since 1000-01-01-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates5-days since 2000-01-01-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates50-days since 1000-01-01-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates51-days since 1900-01-01-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates52-days since 1900-01-01-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates53-days since 1900-01-01-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates54-days since 1-01-01-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates55-days since 1-01-01-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates56-days since 1-01-01-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates6-days since 2000-01-01-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates60-hours since 1900-01-01T00:00:00-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates61-hours since 1900-01-01T00:00:00-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates62-hours since 1900-01-01T00:00:00-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates69-seconds since 1981-01-01-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates7-days since 2000-01-01-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates70-seconds since 1981-01-01-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates71-seconds since 1981-01-01-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates72-hour since 1680-01-01 00:00:00.500000-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates73-hour since 1680-01-01 00:00:00.500000-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates74-hour since 1680-01-01 00:00:00.500000-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates8-days since 2000-01-01-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates81-days since 1850-01-01 00:00:00-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates82-days since 1850-01-01 00:00:00-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates83-days since 1850-01-01 00:00:00-standard]
xarray.tests.test_coding_times ‑ test_cf_datetime[num_dates9-days since 2000-01-01-gregorian]
xarray.tests.test_coding_times ‑ test_cf_datetime_nan[num_dates0-days since 2000-01-01-expected_list0]
xarray.tests.test_coding_times ‑ test_cf_datetime_nan[num_dates1-days since 2000-01-01-expected_list1]
xarray.tests.test_coding_times ‑ test_cf_datetime_nan[num_dates2-days since 2000-01-01-expected_list2]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_1d[360_day]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_1d[365_day]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_1d[366_day]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_1d[all_leap]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_1d[gregorian]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_1d[julian]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_1d[noleap]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_1d[proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_1d[standard]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_3d[360_day]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_3d[365_day]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_3d[366_day]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_3d[all_leap]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_3d[gregorian]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_3d[julian]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_3d[noleap]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_3d[proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_3d[standard]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_dask_1d[360_day]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_dask_1d[365_day]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_dask_1d[366_day]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_dask_1d[all_leap]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_dask_1d[gregorian]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_dask_1d[julian]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_dask_1d[noleap]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_dask_1d[proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_dask_1d[standard]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_dask_3d[360_day]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_dask_3d[365_day]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_dask_3d[366_day]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_dask_3d[all_leap]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_dask_3d[gregorian]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_dask_3d[julian]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_dask_3d[noleap]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_dask_3d[proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_dask_3d[standard]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_non_cftimes_dask[non_cftime_data0]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_non_cftimes_dask[non_cftime_data1]
xarray.tests.test_coding_times ‑ test_contains_cftime_lazy
xarray.tests.test_coding_times ‑ test_decode_0size_datetime[True]
xarray.tests.test_coding_times ‑ test_decode_360_day_calendar
xarray.tests.test_coding_times ‑ test_decode_abbreviation
xarray.tests.test_coding_times ‑ test_decode_ambiguous_time_warns[360_day]
xarray.tests.test_coding_times ‑ test_decode_ambiguous_time_warns[365_day]
xarray.tests.test_coding_times ‑ test_decode_ambiguous_time_warns[366_day]
xarray.tests.test_coding_times ‑ test_decode_ambiguous_time_warns[all_leap]
xarray.tests.test_coding_times ‑ test_decode_ambiguous_time_warns[gregorian]
xarray.tests.test_coding_times ‑ test_decode_ambiguous_time_warns[julian]
xarray.tests.test_coding_times ‑ test_decode_ambiguous_time_warns[noleap]
xarray.tests.test_coding_times ‑ test_decode_ambiguous_time_warns[proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_decode_ambiguous_time_warns[standard]
xarray.tests.test_coding_times ‑ test_decode_cf_datetime_non_iso_strings
xarray.tests.test_coding_times ‑ test_decode_cf_datetime_overflow
xarray.tests.test_coding_times ‑ test_decode_cf_datetime_uint64_with_cftime
xarray.tests.test_coding_times ‑ test_decode_cf_datetime_uint64_with_cftime_overflow_error
xarray.tests.test_coding_times ‑ test_decode_dates_outside_timestamp_range[360_day]
xarray.tests.test_coding_times ‑ test_decode_dates_outside_timestamp_range[365_day]
xarray.tests.test_coding_times ‑ test_decode_dates_outside_timestamp_range[366_day]
xarray.tests.test_coding_times ‑ test_decode_dates_outside_timestamp_range[all_leap]
xarray.tests.test_coding_times ‑ test_decode_dates_outside_timestamp_range[gregorian]
xarray.tests.test_coding_times ‑ test_decode_dates_outside_timestamp_range[julian]
xarray.tests.test_coding_times ‑ test_decode_dates_outside_timestamp_range[noleap]
xarray.tests.test_coding_times ‑ test_decode_dates_outside_timestamp_range[proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_decode_dates_outside_timestamp_range[standard]
xarray.tests.test_coding_times ‑ test_decode_multidim_time_outside_timestamp_range[360_day]
xarray.tests.test_coding_times ‑ test_decode_multidim_time_outside_timestamp_range[365_day]
xarray.tests.test_coding_times ‑ test_decode_multidim_time_outside_timestamp_range[366_day]
xarray.tests.test_coding_times ‑ test_decode_multidim_time_outside_timestamp_range[all_leap]
xarray.tests.test_coding_times ‑ test_decode_multidim_time_outside_timestamp_range[gregorian]
xarray.tests.test_coding_times ‑ test_decode_multidim_time_outside_timestamp_range[julian]
xarray.tests.test_coding_times ‑ test_decode_multidim_time_outside_timestamp_range[noleap]
xarray.tests.test_coding_times ‑ test_decode_multidim_time_outside_timestamp_range[proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_decode_multidim_time_outside_timestamp_range[standard]
xarray.tests.test_coding_times ‑ test_decode_non_standard_calendar_inside_timestamp_range[360_day]
xarray.tests.test_coding_times ‑ test_decode_non_standard_calendar_inside_timestamp_range[365_day]
xarray.tests.test_coding_times ‑ test_decode_non_standard_calendar_inside_timestamp_range[366_day]
xarray.tests.test_coding_times ‑ test_decode_non_standard_calendar_inside_timestamp_range[all_leap]
xarray.tests.test_coding_times ‑ test_decode_non_standard_calendar_inside_timestamp_range[julian]
xarray.tests.test_coding_times ‑ test_decode_non_standard_calendar_inside_timestamp_range[noleap]
xarray.tests.test_coding_times ‑ test_decode_non_standard_calendar_single_element[360_day-720058.0]
xarray.tests.test_coding_times ‑ test_decode_non_standard_calendar_single_element[366_day-732059.0]
xarray.tests.test_coding_times ‑ test_decode_non_standard_calendar_single_element[all_leap-732059.0]
xarray.tests.test_coding_times ‑ test_decode_non_standard_calendar_single_element_inside_timestamp_range[360_day]
xarray.tests.test_coding_times ‑ test_decode_non_standard_calendar_single_element_inside_timestamp_range[365_day]
xarray.tests.test_coding_times ‑ test_decode_non_standard_calendar_single_element_inside_timestamp_range[366_day]
xarray.tests.test_coding_times ‑ test_decode_non_standard_calendar_single_element_inside_timestamp_range[all_leap]
xarray.tests.test_coding_times ‑ test_decode_non_standard_calendar_single_element_inside_timestamp_range[julian]
xarray.tests.test_coding_times ‑ test_decode_non_standard_calendar_single_element_inside_timestamp_range[noleap]
xarray.tests.test_coding_times ‑ test_decode_nonstandard_calendar_multidim_time_inside_timestamp_range[360_day]
xarray.tests.test_coding_times ‑ test_decode_nonstandard_calendar_multidim_time_inside_timestamp_range[365_day]
xarray.tests.test_coding_times ‑ test_decode_nonstandard_calendar_multidim_time_inside_timestamp_range[366_day]
xarray.tests.test_coding_times ‑ test_decode_nonstandard_calendar_multidim_time_inside_timestamp_range[all_leap]
xarray.tests.test_coding_times ‑ test_decode_nonstandard_calendar_multidim_time_inside_timestamp_range[julian]
xarray.tests.test_coding_times ‑ test_decode_nonstandard_calendar_multidim_time_inside_timestamp_range[noleap]
xarray.tests.test_coding_times ‑ test_decode_single_element_outside_timestamp_range[360_day]
xarray.tests.test_coding_times ‑ test_decode_single_element_outside_timestamp_range[365_day]
xarray.tests.test_coding_times ‑ test_decode_single_element_outside_timestamp_range[366_day]
xarray.tests.test_coding_times ‑ test_decode_single_element_outside_timestamp_range[all_leap]
xarray.tests.test_coding_times ‑ test_decode_single_element_outside_timestamp_range[julian]
xarray.tests.test_coding_times ‑ test_decode_single_element_outside_timestamp_range[noleap]
xarray.tests.test_coding_times ‑ test_decode_standard_calendar_inside_timestamp_range[gregorian]
xarray.tests.test_coding_times ‑ test_decode_standard_calendar_inside_timestamp_range[proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_decode_standard_calendar_inside_timestamp_range[standard]
xarray.tests.test_coding_times ‑ test_decode_standard_calendar_multidim_time_inside_timestamp_range[gregorian]
xarray.tests.test_coding_times ‑ test_decode_standard_calendar_multidim_time_inside_timestamp_range[proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_decode_standard_calendar_multidim_time_inside_timestamp_range[standard]
xarray.tests.test_coding_times ‑ test_decode_standard_calendar_single_element_inside_timestamp_range[gregorian]
xarray.tests.test_coding_times ‑ test_decode_standard_calendar_single_element_inside_timestamp_range[proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_decode_standard_calendar_single_element_inside_timestamp_range[standard]
xarray.tests.test_coding_times ‑ test_decoded_cf_datetime_array_2d
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_casting_overflow_error[dtype0-False-True]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_casting_overflow_error[dtype0-True-False]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_casting_overflow_error[dtype0-True-True]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_casting_overflow_error[dtype1-False-True]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_casting_overflow_error[dtype1-True-False]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_casting_overflow_error[dtype1-True-True]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_casting_value_error[False-True]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_casting_value_error[True-False]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_casting_value_error[True-True]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_cftime_datetime_via_dask[None-None]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_cftime_datetime_via_dask[days since 1700-01-01-dtype0]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_datetime64_via_dask[mixed-cftime-pandas-encoding-with-prescribed-units-and-dtype]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_datetime64_via_dask[pandas-encoding-with-default-units-and-dtype]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_datetime64_via_dask[pandas-encoding-with-prescribed-units-and-dtype]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-D-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-D-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-D-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-D-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-D-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-D-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-D-seconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-h-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-h-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-h-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-h-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-h-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-h-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-h-seconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-min-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-min-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-min-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-min-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-min-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-min-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-min-seconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-ms-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-ms-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-ms-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-ms-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-ms-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-ms-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-ms-seconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-ns-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-ns-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-ns-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-ns-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-ns-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-ns-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-ns-seconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-s-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-s-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-s-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-s-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-s-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-s-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-s-seconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-us-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-us-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-us-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-us-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-us-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-us-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-us-seconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_invalid_pandas_valid_cftime
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_overflow[shape0]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_overflow[shape1]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_overflow[shape2]
xarray.tests.test_coding_times ‑ test_encode_cf_timedelta_casting_overflow_error[dtype0-True]
xarray.tests.test_coding_times ‑ test_encode_cf_timedelta_casting_overflow_error[dtype1-True]
xarray.tests.test_coding_times ‑ test_encode_cf_timedelta_casting_value_error[True]
xarray.tests.test_coding_times ‑ test_encode_cf_timedelta_via_dask[None-None]
xarray.tests.test_coding_times ‑ test_encode_cf_timedelta_via_dask[days-dtype0]
xarray.tests.test_coding_times ‑ test_encode_decode_roundtrip_cftime[D]
xarray.tests.test_coding_times ‑ test_encode_decode_roundtrip_cftime[h]
xarray.tests.test_coding_times ‑ test_encode_decode_roundtrip_cftime[min]
xarray.tests.test_coding_times ‑ test_encode_decode_roundtrip_cftime[ms]
xarray.tests.test_coding_times ‑ test_encode_decode_roundtrip_cftime[s]
xarray.tests.test_coding_times ‑ test_encode_decode_roundtrip_cftime[us]
xarray.tests.test_coding_times ‑ test_encode_time_bounds
xarray.tests.test_coding_times ‑ test_encode_via_dask_cannot_infer_error[date_range-2000-None-dtype0]
xarray.tests.test_coding_times ‑ test_encode_via_dask_cannot_infer_error[date_range-2000-days since 2000-01-01-None]
xarray.tests.test_coding_times ‑ test_encode_via_dask_cannot_infer_error[timedelta_range-0D-None-dtype2]
xarray.tests.test_coding_times ‑ test_encode_via_dask_cannot_infer_error[timedelta_range-0D-days-None]
xarray.tests.test_coding_times ‑ test_format_cftime_datetime[date_args0-0001-02-03 04:05:06.000000]
xarray.tests.test_coding_times ‑ test_format_cftime_datetime[date_args1-0010-02-03 04:05:06.000000]
xarray.tests.test_coding_times ‑ test_format_cftime_datetime[date_args2-0100-02-03 04:05:06.000000]
xarray.tests.test_coding_times ‑ test_format_cftime_datetime[date_args3-1000-02-03 04:05:06.000000]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args0-days since 1900-01-01 00:00:00.000000-360_day]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args0-days since 1900-01-01 00:00:00.000000-365_day]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args0-days since 1900-01-01 00:00:00.000000-366_day]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args0-days since 1900-01-01 00:00:00.000000-all_leap]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args0-days since 1900-01-01 00:00:00.000000-gregorian]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args0-days since 1900-01-01 00:00:00.000000-julian]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args0-days since 1900-01-01 00:00:00.000000-noleap]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args0-days since 1900-01-01 00:00:00.000000-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args1-seconds since 1900-01-01 00:00:00.000000-360_day]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args1-seconds since 1900-01-01 00:00:00.000000-365_day]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args1-seconds since 1900-01-01 00:00:00.000000-366_day]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args1-seconds since 1900-01-01 00:00:00.000000-all_leap]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args1-seconds since 1900-01-01 00:00:00.000000-gregorian]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args1-seconds since 1900-01-01 00:00:00.000000-julian]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args1-seconds since 1900-01-01 00:00:00.000000-noleap]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args1-seconds since 1900-01-01 00:00:00.000000-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args2-days since 1900-01-01 00:00:00.000000-360_day]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args2-days since 1900-01-01 00:00:00.000000-365_day]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args2-days since 1900-01-01 00:00:00.000000-366_day]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args2-days since 1900-01-01 00:00:00.000000-all_leap]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args2-days since 1900-01-01 00:00:00.000000-gregorian]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args2-days since 1900-01-01 00:00:00.000000-julian]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args2-days since 1900-01-01 00:00:00.000000-noleap]
xarray.tests.test_coding_times ‑ test_infer_cftime_datetime_units[date_args2-days since 1900-01-01 00:00:00.000000-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_scalar_unit
xarray.tests.test_coding_times ‑ test_should_cftime_be_used_source_outside_range
xarray.tests.test_coding_times ‑ test_should_cftime_be_used_target_not_npable
xarray.tests.test_coding_times ‑ test_time_units_with_timezone_roundtrip[360_day]
xarray.tests.test_coding_times ‑ test_time_units_with_timezone_roundtrip[365_day]
xarray.tests.test_coding_times ‑ test_time_units_with_timezone_roundtrip[366_day]
xarray.tests.test_coding_times ‑ test_time_units_with_timezone_roundtrip[all_leap]
xarray.tests.test_coding_times ‑ test_time_units_with_timezone_roundtrip[gregorian]
xarray.tests.test_coding_times ‑ test_time_units_with_timezone_roundtrip[julian]
xarray.tests.test_coding_times ‑ test_time_units_with_timezone_roundtrip[noleap]
xarray.tests.test_coding_times ‑ test_time_units_with_timezone_roundtrip[proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_time_units_with_timezone_roundtrip[standard]
xarray.tests.test_coding_times ‑ test_use_cftime_default_non_standard_calendar[1500-360_day]
xarray.tests.test_coding_times ‑ test_use_cftime_default_non_standard_calendar[1500-365_day]
Check notice on line 0 in .github
github-actions / Test Results
7357 skipped tests found (test 3716 to 4509)
There are 7357 skipped tests, see "Raw output" for the list of skipped tests 3716 to 4509.
Raw output
xarray.tests.test_coding_times ‑ test_use_cftime_default_non_standard_calendar[1500-366_day]
xarray.tests.test_coding_times ‑ test_use_cftime_default_non_standard_calendar[1500-all_leap]
xarray.tests.test_coding_times ‑ test_use_cftime_default_non_standard_calendar[1500-julian]
xarray.tests.test_coding_times ‑ test_use_cftime_default_non_standard_calendar[1500-noleap]
xarray.tests.test_coding_times ‑ test_use_cftime_default_non_standard_calendar[2000-360_day]
xarray.tests.test_coding_times ‑ test_use_cftime_default_non_standard_calendar[2000-365_day]
xarray.tests.test_coding_times ‑ test_use_cftime_default_non_standard_calendar[2000-366_day]
xarray.tests.test_coding_times ‑ test_use_cftime_default_non_standard_calendar[2000-all_leap]
xarray.tests.test_coding_times ‑ test_use_cftime_default_non_standard_calendar[2000-julian]
xarray.tests.test_coding_times ‑ test_use_cftime_default_non_standard_calendar[2000-noleap]
xarray.tests.test_coding_times ‑ test_use_cftime_default_non_standard_calendar[2500-360_day]
xarray.tests.test_coding_times ‑ test_use_cftime_default_non_standard_calendar[2500-365_day]
xarray.tests.test_coding_times ‑ test_use_cftime_default_non_standard_calendar[2500-366_day]
xarray.tests.test_coding_times ‑ test_use_cftime_default_non_standard_calendar[2500-all_leap]
xarray.tests.test_coding_times ‑ test_use_cftime_default_non_standard_calendar[2500-julian]
xarray.tests.test_coding_times ‑ test_use_cftime_default_non_standard_calendar[2500-noleap]
xarray.tests.test_coding_times ‑ test_use_cftime_default_standard_calendar_out_of_range[1500-gregorian]
xarray.tests.test_coding_times ‑ test_use_cftime_default_standard_calendar_out_of_range[1500-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_use_cftime_default_standard_calendar_out_of_range[1500-standard]
xarray.tests.test_coding_times ‑ test_use_cftime_default_standard_calendar_out_of_range[2500-gregorian]
xarray.tests.test_coding_times ‑ test_use_cftime_default_standard_calendar_out_of_range[2500-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_use_cftime_default_standard_calendar_out_of_range[2500-standard]
xarray.tests.test_coding_times ‑ test_use_cftime_true[1500-360_day]
xarray.tests.test_coding_times ‑ test_use_cftime_true[1500-365_day]
xarray.tests.test_coding_times ‑ test_use_cftime_true[1500-366_day]
xarray.tests.test_coding_times ‑ test_use_cftime_true[1500-all_leap]
xarray.tests.test_coding_times ‑ test_use_cftime_true[1500-gregorian]
xarray.tests.test_coding_times ‑ test_use_cftime_true[1500-julian]
xarray.tests.test_coding_times ‑ test_use_cftime_true[1500-noleap]
xarray.tests.test_coding_times ‑ test_use_cftime_true[1500-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_use_cftime_true[1500-standard]
xarray.tests.test_coding_times ‑ test_use_cftime_true[2000-360_day]
xarray.tests.test_coding_times ‑ test_use_cftime_true[2000-365_day]
xarray.tests.test_coding_times ‑ test_use_cftime_true[2000-366_day]
xarray.tests.test_coding_times ‑ test_use_cftime_true[2000-all_leap]
xarray.tests.test_coding_times ‑ test_use_cftime_true[2000-gregorian]
xarray.tests.test_coding_times ‑ test_use_cftime_true[2000-julian]
xarray.tests.test_coding_times ‑ test_use_cftime_true[2000-noleap]
xarray.tests.test_coding_times ‑ test_use_cftime_true[2000-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_use_cftime_true[2000-standard]
xarray.tests.test_coding_times ‑ test_use_cftime_true[2500-360_day]
xarray.tests.test_coding_times ‑ test_use_cftime_true[2500-365_day]
xarray.tests.test_coding_times ‑ test_use_cftime_true[2500-366_day]
xarray.tests.test_coding_times ‑ test_use_cftime_true[2500-all_leap]
xarray.tests.test_coding_times ‑ test_use_cftime_true[2500-gregorian]
xarray.tests.test_coding_times ‑ test_use_cftime_true[2500-julian]
xarray.tests.test_coding_times ‑ test_use_cftime_true[2500-noleap]
xarray.tests.test_coding_times ‑ test_use_cftime_true[2500-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_use_cftime_true[2500-standard]
xarray.tests.test_combine ‑ test_combine_by_coords_distant_cftime_dates
xarray.tests.test_combine ‑ test_combine_by_coords_raises_for_differing_calendars
xarray.tests.test_combine.TestNestedCombine ‑ test_nested_concat_too_many_dims_at_once
xarray.tests.test_computation ‑ test_apply_dask
xarray.tests.test_computation ‑ test_apply_dask_multiple_inputs
xarray.tests.test_computation ‑ test_apply_dask_new_output_dimension
xarray.tests.test_computation ‑ test_apply_dask_new_output_sizes
xarray.tests.test_computation ‑ test_apply_dask_new_output_sizes_not_supplied_same_dim_names
xarray.tests.test_computation ‑ test_apply_dask_parallelized_errors
xarray.tests.test_computation ‑ test_apply_dask_parallelized_one_arg
xarray.tests.test_computation ‑ test_apply_dask_parallelized_two_args
xarray.tests.test_computation ‑ test_apply_dask_parallelized_two_outputs
xarray.tests.test_computation ‑ test_corr_dtype_error
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[None-0]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[None-1]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[None-2]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[None-3]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[None-4]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[None-5]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[None-6]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[None-7]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[None-8]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[time-0]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[time-1]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[time-2]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[time-3]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[time-4]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[time-5]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[time-6]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[time-7]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[time-8]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[x-0]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[x-1]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[x-2]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[x-3]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[x-4]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[x-5]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[x-6]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[x-7]
xarray.tests.test_computation ‑ test_corr_lazycorr_consistency[x-8]
xarray.tests.test_computation ‑ test_cross[a0-b0-ae0-be0-dim_0--1-True]
xarray.tests.test_computation ‑ test_cross[a1-b1-ae1-be1-dim_0--1-True]
xarray.tests.test_computation ‑ test_cross[a2-b2-ae2-be2-dim_0--1-True]
xarray.tests.test_computation ‑ test_cross[a3-b3-ae3-be3-dim_0--1-True]
xarray.tests.test_computation ‑ test_cross[a4-b4-ae4-be4-cartesian-1-True]
xarray.tests.test_computation ‑ test_cross[a5-b5-ae5-be5-cartesian--1-True]
xarray.tests.test_computation ‑ test_cross[a6-b6-ae6-be6-cartesian--1-True]
xarray.tests.test_computation ‑ test_dot[True]
xarray.tests.test_computation ‑ test_dot_align_coords[True]
xarray.tests.test_computation ‑ test_lazy_corrcov[None-3-0]
xarray.tests.test_computation ‑ test_lazy_corrcov[None-3-1]
xarray.tests.test_computation ‑ test_lazy_corrcov[None-4-0]
xarray.tests.test_computation ‑ test_lazy_corrcov[None-4-1]
xarray.tests.test_computation ‑ test_lazy_corrcov[None-5-0]
xarray.tests.test_computation ‑ test_lazy_corrcov[None-5-1]
xarray.tests.test_computation ‑ test_lazy_corrcov[None-6-0]
xarray.tests.test_computation ‑ test_lazy_corrcov[None-6-1]
xarray.tests.test_computation ‑ test_lazy_corrcov[None-7-0]
xarray.tests.test_computation ‑ test_lazy_corrcov[None-7-1]
xarray.tests.test_computation ‑ test_lazy_corrcov[None-8-0]
xarray.tests.test_computation ‑ test_lazy_corrcov[None-8-1]
xarray.tests.test_computation ‑ test_lazy_corrcov[time-3-0]
xarray.tests.test_computation ‑ test_lazy_corrcov[time-3-1]
xarray.tests.test_computation ‑ test_lazy_corrcov[time-4-0]
xarray.tests.test_computation ‑ test_lazy_corrcov[time-4-1]
xarray.tests.test_computation ‑ test_lazy_corrcov[time-5-0]
xarray.tests.test_computation ‑ test_lazy_corrcov[time-5-1]
xarray.tests.test_computation ‑ test_lazy_corrcov[time-6-0]
xarray.tests.test_computation ‑ test_lazy_corrcov[time-6-1]
xarray.tests.test_computation ‑ test_lazy_corrcov[time-7-0]
xarray.tests.test_computation ‑ test_lazy_corrcov[time-7-1]
xarray.tests.test_computation ‑ test_lazy_corrcov[time-8-0]
xarray.tests.test_computation ‑ test_lazy_corrcov[time-8-1]
xarray.tests.test_computation ‑ test_lazy_corrcov[x-3-0]
xarray.tests.test_computation ‑ test_lazy_corrcov[x-3-1]
xarray.tests.test_computation ‑ test_lazy_corrcov[x-4-0]
xarray.tests.test_computation ‑ test_lazy_corrcov[x-4-1]
xarray.tests.test_computation ‑ test_lazy_corrcov[x-5-0]
xarray.tests.test_computation ‑ test_lazy_corrcov[x-5-1]
xarray.tests.test_computation ‑ test_lazy_corrcov[x-6-0]
xarray.tests.test_computation ‑ test_lazy_corrcov[x-6-1]
xarray.tests.test_computation ‑ test_lazy_corrcov[x-7-0]
xarray.tests.test_computation ‑ test_lazy_corrcov[x-7-1]
xarray.tests.test_computation ‑ test_lazy_corrcov[x-8-0]
xarray.tests.test_computation ‑ test_lazy_corrcov[x-8-1]
xarray.tests.test_computation ‑ test_polyfit_polyval_integration[1D-datetime-dask]
xarray.tests.test_computation ‑ test_polyfit_polyval_integration[1D-simple-dask]
xarray.tests.test_computation ‑ test_polyfit_polyval_integration[1D-timedelta-dask]
xarray.tests.test_computation ‑ test_polyfit_polyval_integration[2D-datetime-dask]
xarray.tests.test_computation ‑ test_polyfit_polyval_integration[2D-simple-dask]
xarray.tests.test_computation ‑ test_polyfit_polyval_integration[2D-timedelta-dask]
xarray.tests.test_computation ‑ test_polyval[array-dataset-dask]
xarray.tests.test_computation ‑ test_polyval[broadcast-x-dask]
xarray.tests.test_computation ‑ test_polyval[dataset-array-dask]
xarray.tests.test_computation ‑ test_polyval[dataset-dataset-dask]
xarray.tests.test_computation ‑ test_polyval[datetime-dask]
xarray.tests.test_computation ‑ test_polyval[int32-degree-dask]
xarray.tests.test_computation ‑ test_polyval[int64-degree-dask]
xarray.tests.test_computation ‑ test_polyval[reordered-index-dask]
xarray.tests.test_computation ‑ test_polyval[shared-dim-dask]
xarray.tests.test_computation ‑ test_polyval[simple-dask]
xarray.tests.test_computation ‑ test_polyval[sparse-index-dask]
xarray.tests.test_computation ‑ test_polyval[timedelta-dask]
xarray.tests.test_computation ‑ test_polyval[uint8-degree-dask]
xarray.tests.test_computation ‑ test_polyval_cftime[0753-04-21-dask]
xarray.tests.test_computation ‑ test_polyval_cftime[0753-04-21-nodask]
xarray.tests.test_computation ‑ test_polyval_cftime[1970-01-01-dask]
xarray.tests.test_computation ‑ test_polyval_cftime[1970-01-01-nodask]
xarray.tests.test_computation ‑ test_vectorize_dask
xarray.tests.test_computation ‑ test_vectorize_dask_dtype
xarray.tests.test_computation ‑ test_vectorize_dask_dtype_meta
xarray.tests.test_computation ‑ test_vectorize_dask_dtype_without_output_dtypes[data_array0]
xarray.tests.test_computation ‑ test_vectorize_dask_dtype_without_output_dtypes[data_array1]
xarray.tests.test_computation ‑ test_vectorize_dask_new_output_dims
xarray.tests.test_computation ‑ test_vectorize_exclude_dims_dask
xarray.tests.test_concat.TestConcatDataArray ‑ test_concat_lazy
xarray.tests.test_conventions ‑ test_decode_cf_variable_cftime
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_append_overwrite_values
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_append_with_invalid_dim_raises
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_append_write
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_array_type_after_indexing
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_coordinate_variables_after_dataset_roundtrip
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_coordinate_variables_after_iris_roundtrip
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_coordinates_encoding
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_dataset_caching
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_dataset_compute
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_default_fill_value
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_dropna
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_encoding_kwarg
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_encoding_kwarg_dates
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_encoding_kwarg_fixed_width_string
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_encoding_same_dtype
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_explicitly_omit_fill_value
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_explicitly_omit_fill_value_in_coord
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_explicitly_omit_fill_value_in_coord_via_encoding_kwarg
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_explicitly_omit_fill_value_via_encoding_kwarg
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_grid_mapping_and_bounds_are_coordinates_after_dataarray_roundtrip
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_grid_mapping_and_bounds_are_not_coordinates_in_file
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_invalid_dataarray_names_raise
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_isel_dataarray
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_load
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_multiindex_not_implemented
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_ondisk_after_print
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_orthogonal_indexing
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_outer_indexing_reversed
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_pickle
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_pickle_dataarray
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_None_variable
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_boolean_dtype
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_bytes_with_fill_value
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_cftime_datetime_data
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_coordinates
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_coordinates_with_space
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_empty_vlen_string_array
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_endian
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_example_1_netcdf
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_float64_data
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_global_coordinates
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_mask_and_scale[create_masked_and_scaled_data-create_encoded_masked_and_scaled_data]
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_mask_and_scale[create_signed_masked_scaled_data-create_encoded_signed_masked_scaled_data]
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_mask_and_scale[create_unsigned_masked_scaled_data-create_encoded_unsigned_masked_scaled_data]
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_numpy_datetime_data
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_object_dtype
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_string_data
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_string_encoded_characters
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_string_with_fill_value_nchar
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_test_data
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_timedelta_data
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_vectorized_indexing
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_vectorized_indexing_negative_step
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_write_store
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_zero_dimensional_variable
xarray.tests.test_conventions.TestDecodeCF ‑ test_0d_int32_encoding
xarray.tests.test_conventions.TestDecodeCF ‑ test_dataset
xarray.tests.test_conventions.TestDecodeCF ‑ test_dataset_repr_with_netcdf4_datetimes
xarray.tests.test_conventions.TestDecodeCF ‑ test_decode_cf_datetime_transition_to_invalid
xarray.tests.test_conventions.TestDecodeCF ‑ test_decode_cf_time_kwargs
xarray.tests.test_conventions.TestDecodeCF ‑ test_decode_cf_with_dask
xarray.tests.test_conventions.TestDecodeCF ‑ test_decode_cf_with_drop_variables
xarray.tests.test_conventions.TestDecodeCF ‑ test_decode_cf_with_multiple_missing_values
xarray.tests.test_conventions.TestDecodeCF ‑ test_decode_coordinates
xarray.tests.test_conventions.TestDecodeCF ‑ test_decode_dask_times
xarray.tests.test_conventions.TestDecodeCF ‑ test_invalid_coordinates
xarray.tests.test_conventions.TestDecodeCF ‑ test_invalid_time_units_raises_eagerly
xarray.tests.test_conventions.TestDecodeCF ‑ test_invalid_timedelta_units_do_not_decode[False]
xarray.tests.test_conventions.TestDecodeCF ‑ test_invalid_timedelta_units_do_not_decode[True]
xarray.tests.test_conventions.TestEncodeCFVariable ‑ test_deterministic_coords_encoding
xarray.tests.test_conventions.TestEncodeCFVariable ‑ test_do_not_overwrite_user_coordinates
xarray.tests.test_conventions.TestEncodeCFVariable ‑ test_emit_coordinates_attribute_in_attrs
xarray.tests.test_conventions.TestEncodeCFVariable ‑ test_emit_coordinates_attribute_in_encoding
xarray.tests.test_conventions.TestEncodeCFVariable ‑ test_incompatible_attributes
xarray.tests.test_conventions.TestEncodeCFVariable ‑ test_missing_fillvalue
xarray.tests.test_conventions.TestEncodeCFVariable ‑ test_multidimensional_coordinates
xarray.tests.test_conventions.TestEncodeCFVariable ‑ test_string_object_warning
xarray.tests.test_conventions.TestEncodeCFVariable ‑ test_var_with_coord_attr
xarray.tests.test_cupy
xarray.tests.test_dask
xarray.tests.test_dataarray ‑ test_clip[1-dask]
xarray.tests.test_dataarray ‑ test_isin[dask-repeating_ints]
xarray.tests.test_dataarray.TestDataArray ‑ test_astype_subok
xarray.tests.test_dataarray.TestDataArray ‑ test_chunk
xarray.tests.test_dataarray.TestDataArray ‑ test_constructor_dask_coords
xarray.tests.test_dataarray.TestDataArray ‑ test_constructor_from_self_described_chunked
xarray.tests.test_dataarray.TestDataArray ‑ test_copy_coords[False-expected_orig1]
xarray.tests.test_dataarray.TestDataArray ‑ test_copy_coords[True-expected_orig0]
xarray.tests.test_dataarray.TestDataArray ‑ test_curvefit[False]
xarray.tests.test_dataarray.TestDataArray ‑ test_curvefit[True]
xarray.tests.test_dataarray.TestDataArray ‑ test_curvefit_ignore_errors[False]
xarray.tests.test_dataarray.TestDataArray ‑ test_curvefit_ignore_errors[True]
xarray.tests.test_dataarray.TestDataArray ‑ test_curvefit_multidimensional_bounds[False]
xarray.tests.test_dataarray.TestDataArray ‑ test_curvefit_multidimensional_bounds[True]
xarray.tests.test_dataarray.TestDataArray ‑ test_curvefit_multidimensional_guess[False]
xarray.tests.test_dataarray.TestDataArray ‑ test_curvefit_multidimensional_guess[True]
xarray.tests.test_dataarray.TestDataArray ‑ test_from_multiindex_series_sparse
xarray.tests.test_dataarray.TestDataArray ‑ test_from_series_sparse
xarray.tests.test_dataarray.TestDataArray ‑ test_polyfit[False-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_polyfit[True-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_query[dask-None-pandas]
xarray.tests.test_dataarray.TestDataArray ‑ test_query[dask-None-python]
xarray.tests.test_dataarray.TestDataArray ‑ test_query[dask-numexpr-pandas]
xarray.tests.test_dataarray.TestDataArray ‑ test_query[dask-numexpr-python]
xarray.tests.test_dataarray.TestDataArray ‑ test_query[dask-python-pandas]
xarray.tests.test_dataarray.TestDataArray ‑ test_query[dask-python-python]
xarray.tests.test_dataarray.TestDataArray ‑ test_query[numpy-numexpr-pandas]
xarray.tests.test_dataarray.TestDataArray ‑ test_query[numpy-numexpr-python]
xarray.tests.test_dataarray.TestDataArray ‑ test_rank
xarray.tests.test_dataarray.TestDataArray ‑ test_reduce_keepdims_bottleneck
xarray.tests.test_dataarray.TestDataArray ‑ test_stack_nonunique_consistency[1-dask]
xarray.tests.test_dataarray.TestDataArray ‑ test_to_and_from_dict[False-True-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_to_and_from_dict[False-array-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_to_and_from_dict[False-list-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_to_and_from_dict[True-True-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_to_and_from_dict[True-array-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_to_and_from_dict[True-list-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_to_dask_dataframe
xarray.tests.test_dataarray.TestIrisConversion ‑ test_da_coord_name_from_cube[None-None-Height-Height-attrs2]
xarray.tests.test_dataarray.TestIrisConversion ‑ test_da_coord_name_from_cube[None-None-None-unknown-attrs3]
xarray.tests.test_dataarray.TestIrisConversion ‑ test_da_coord_name_from_cube[None-height-Height-height-attrs1]
xarray.tests.test_dataarray.TestIrisConversion ‑ test_da_coord_name_from_cube[var_name-height-Height-var_name-attrs0]
xarray.tests.test_dataarray.TestIrisConversion ‑ test_da_name_from_cube[None-None-Height-Height-attrs2]
xarray.tests.test_dataarray.TestIrisConversion ‑ test_da_name_from_cube[None-None-None-None-attrs3]
xarray.tests.test_dataarray.TestIrisConversion ‑ test_da_name_from_cube[None-height-Height-height-attrs1]
xarray.tests.test_dataarray.TestIrisConversion ‑ test_da_name_from_cube[var_name-height-Height-var_name-attrs0]
xarray.tests.test_dataarray.TestIrisConversion ‑ test_fallback_to_iris_AuxCoord[coord_values0]
xarray.tests.test_dataarray.TestIrisConversion ‑ test_fallback_to_iris_AuxCoord[coord_values1]
xarray.tests.test_dataarray.TestIrisConversion ‑ test_prevent_duplicate_coord_names
xarray.tests.test_dataarray.TestIrisConversion ‑ test_to_and_from_iris
xarray.tests.test_dataarray.TestIrisConversion ‑ test_to_and_from_iris_dask
xarray.tests.test_dataarray.TestNumpyCoercion ‑ test_from_cupy
xarray.tests.test_dataarray.TestNumpyCoercion ‑ test_from_dask
xarray.tests.test_dataarray.TestNumpyCoercion ‑ test_from_pint
xarray.tests.test_dataarray.TestNumpyCoercion ‑ test_from_pint_wrapping_dask
xarray.tests.test_dataarray.TestNumpyCoercion ‑ test_from_sparse
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmax[True-allnan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmax[True-datetime]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmax[True-float]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmax[True-int]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmax[True-nan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmax[True-obj]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmin[True-allnan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmin[True-datetime]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmin[True-float]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmin[True-int]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmin[True-nan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmin[True-obj]
xarray.tests.test_dataarray.TestReduce2D ‑ test_idxmax[dask-datetime]
xarray.tests.test_dataarray.TestReduce2D ‑ test_idxmax[dask-int]
xarray.tests.test_dataarray.TestReduce2D ‑ test_idxmax[dask-nan]
xarray.tests.test_dataarray.TestReduce2D ‑ test_idxmax[dask-obj]
xarray.tests.test_dataarray.TestReduce2D ‑ test_idxmin[dask-datetime]
xarray.tests.test_dataarray.TestReduce2D ‑ test_idxmin[dask-int]
xarray.tests.test_dataarray.TestReduce2D ‑ test_idxmin[dask-nan]
xarray.tests.test_dataarray.TestReduce2D ‑ test_idxmin[dask-obj]
xarray.tests.test_dataarray.TestReduceND ‑ test_idxminmax_dask[3-idxmax]
xarray.tests.test_dataarray.TestReduceND ‑ test_idxminmax_dask[3-idxmin]
xarray.tests.test_dataarray.TestReduceND ‑ test_idxminmax_dask[5-idxmax]
xarray.tests.test_dataarray.TestReduceND ‑ test_idxminmax_dask[5-idxmin]
xarray.tests.test_dataset ‑ test_clip[1-dask]
xarray.tests.test_dataset ‑ test_cumulative_integrate[False]
xarray.tests.test_dataset ‑ test_cumulative_integrate[True]
xarray.tests.test_dataset ‑ test_differentiate_cftime[False]
xarray.tests.test_dataset ‑ test_differentiate_cftime[True]
xarray.tests.test_dataset ‑ test_dir_expected_attrs[dask-3]
xarray.tests.test_dataset ‑ test_dir_non_string[1-dask]
xarray.tests.test_dataset ‑ test_dir_unicode[1-dask]
xarray.tests.test_dataset ‑ test_eval[1-dask-pandas]
xarray.tests.test_dataset ‑ test_eval[1-dask-python]
xarray.tests.test_dataset ‑ test_isin[dask-test_elements0]
xarray.tests.test_dataset ‑ test_isin[dask-test_elements1]
xarray.tests.test_dataset ‑ test_isin[dask-test_elements2]
xarray.tests.test_dataset ‑ test_raise_no_warning_assert_close[dask-2]
xarray.tests.test_dataset ‑ test_trapz_datetime[cftime-False]
xarray.tests.test_dataset ‑ test_trapz_datetime[cftime-True]
xarray.tests.test_dataset.TestDataset ‑ test_chunk
xarray.tests.test_dataset.TestDataset ‑ test_copy_coords[False-expected_orig1]
xarray.tests.test_dataset.TestDataset ‑ test_copy_coords[True-expected_orig0]
xarray.tests.test_dataset.TestDataset ‑ test_dask_is_lazy
xarray.tests.test_dataset.TestDataset ‑ test_from_dataframe_sparse
xarray.tests.test_dataset.TestDataset ‑ test_query[dask-None-pandas]
xarray.tests.test_dataset.TestDataset ‑ test_query[dask-None-python]
xarray.tests.test_dataset.TestDataset ‑ test_query[dask-numexpr-pandas]
xarray.tests.test_dataset.TestDataset ‑ test_query[dask-numexpr-python]
xarray.tests.test_dataset.TestDataset ‑ test_query[dask-python-pandas]
xarray.tests.test_dataset.TestDataset ‑ test_query[dask-python-python]
xarray.tests.test_dataset.TestDataset ‑ test_query[numpy-numexpr-pandas]
xarray.tests.test_dataset.TestDataset ‑ test_query[numpy-numexpr-python]
xarray.tests.test_dataset.TestDataset ‑ test_rank
xarray.tests.test_dataset.TestDataset ‑ test_rename_does_not_change_CFTimeIndex_type
xarray.tests.test_dataset.TestDataset ‑ test_unstack_sparse
xarray.tests.test_dataset.TestNumpyCoercion ‑ test_from_cupy
xarray.tests.test_dataset.TestNumpyCoercion ‑ test_from_dask
xarray.tests.test_dataset.TestNumpyCoercion ‑ test_from_pint
xarray.tests.test_dataset.TestNumpyCoercion ‑ test_from_pint_wrapping_dask
xarray.tests.test_dataset.TestNumpyCoercion ‑ test_from_sparse
xarray.tests.test_distributed
xarray.tests.test_dtypes ‑ test_result_type_dask_array
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-True-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-True-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-False-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-False-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-False-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-True-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-True-True-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-True-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-True-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-False-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-False-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-False-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-True-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-True-True-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-False-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-False-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-False-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-False-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-False-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-False-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-False-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-False-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-False-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-True-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-True-True-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-False-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-False-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-False-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-False-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-False-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-False-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-False-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-False-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-False-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-True-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-True-True-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-False-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-False-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-False-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-False-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-False-False-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-False-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-False-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-False-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-False-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-False-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-False-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-False-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-False-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-False-True-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-False-True-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-False-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-False-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-False-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-True-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-max-True-True-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-False-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-False-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-False-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-False-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-False-False-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-False-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-False-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-False-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-False-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-False-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-False-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-False-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-False-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-False-True-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-False-True-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-False-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-False-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-False-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-True-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-False-min-True-True-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-False-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-False-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-False-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-False-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-False-False-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-False-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-False-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-False-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-False-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-False-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-False-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-False-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-False-True-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-False-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-False-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-False-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-True-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-max-True-True-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-False-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-False-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-False-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-False-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-False-False-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-False-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-False-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-False-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-False-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-False-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-False-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-False-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-False-True-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-False-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-False-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-False-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-True-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[y-True-min-True-True-str-2]
xarray.tests.test_duck_array_ops ‑ test_cftime_datetime_mean[False]
xarray.tests.test_duck_array_ops ‑ test_cftime_datetime_mean[True]
xarray.tests.test_duck_array_ops ‑ test_cftime_datetime_mean_long_time_period
xarray.tests.test_duck_array_ops ‑ test_dask_gradient[1--1]
xarray.tests.test_duck_array_ops ‑ test_dask_gradient[1-0]
xarray.tests.test_duck_array_ops ‑ test_dask_gradient[1-1]
xarray.tests.test_duck_array_ops ‑ test_dask_gradient[2--1]
xarray.tests.test_duck_array_ops ‑ test_dask_gradient[2-0]
xarray.tests.test_duck_array_ops ‑ test_dask_gradient[2-1]
xarray.tests.test_duck_array_ops ‑ test_datetime_to_numeric_cftime[False]
xarray.tests.test_duck_array_ops ‑ test_datetime_to_numeric_cftime[True]
xarray.tests.test_duck_array_ops ‑ test_datetime_to_numeric_datetime64[True]
xarray.tests.test_duck_array_ops ‑ test_datetime_to_numeric_potential_overflow
xarray.tests.test_duck_array_ops ‑ test_isnull_with_dask
xarray.tests.test_duck_array_ops ‑ test_least_squares[False-True]
xarray.tests.test_duck_array_ops ‑ test_least_squares[True-True]
xarray.tests.test_duck_array_ops ‑ test_mean_over_non_time_dim_of_dataset_with_dask_backed_cftime_data
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-prod-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-prod-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-prod-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-prod-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-prod-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-prod-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-prod-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-prod-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-sum-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-sum-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-sum-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-sum-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-sum-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-sum-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-sum-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-sum-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-prod-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-prod-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-prod-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-prod-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-prod-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-prod-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-prod-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-prod-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-sum-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-sum-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-sum-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-sum-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-sum-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-sum-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-sum-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-sum-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-prod-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-prod-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-prod-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-prod-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-prod-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-prod-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-prod-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-prod-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-sum-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-sum-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-sum-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-sum-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-sum-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-sum-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-sum-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-sum-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-prod-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-prod-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-prod-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-prod-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-prod-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-prod-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-prod-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-prod-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-sum-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-sum-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-sum-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-sum-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-sum-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-sum-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-sum-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-sum-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-prod-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-prod-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-prod-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-prod-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-prod-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-prod-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-prod-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-prod-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-sum-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-sum-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-sum-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-sum-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-sum-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-sum-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-sum-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-sum-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-prod-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-prod-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-prod-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-prod-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-prod-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-prod-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-prod-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-prod-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-sum-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-sum-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-sum-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-sum-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-sum-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-sum-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-sum-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-sum-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-prod-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-prod-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-prod-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-prod-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-prod-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-prod-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-prod-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-prod-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-sum-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-sum-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-sum-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-sum-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-sum-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-sum-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-sum-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-sum-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-prod-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-prod-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-prod-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-prod-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-prod-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-prod-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-prod-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-prod-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-sum-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-sum-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-sum-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-sum-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-sum-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-sum-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-sum-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-sum-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-prod-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-prod-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-prod-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-prod-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-prod-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-prod-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-prod-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-prod-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-sum-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-sum-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-sum-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-sum-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-sum-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-sum-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-sum-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-sum-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-prod-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-prod-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-prod-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-prod-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-prod-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-prod-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-prod-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-prod-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-sum-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-sum-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-sum-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-sum-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-sum-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-sum-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-sum-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-sum-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-prod-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-prod-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-prod-True-float-1]
Check notice on line 0 in .github
github-actions / Test Results
7357 skipped tests found (test 4510 to 5402)
There are 7357 skipped tests, see "Raw output" for the list of skipped tests 4510 to 5402.
Raw output
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-prod-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-prod-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-prod-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-prod-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-prod-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-sum-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-sum-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-sum-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-sum-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-sum-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-sum-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-sum-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-sum-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-prod-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-prod-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-prod-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-prod-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-prod-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-prod-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-prod-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-prod-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-sum-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-sum-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-sum-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-sum-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-sum-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-sum-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-sum-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-sum-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_min_count_nd[prod-True-bool_]
xarray.tests.test_duck_array_ops ‑ test_min_count_nd[prod-True-float32]
xarray.tests.test_duck_array_ops ‑ test_min_count_nd[prod-True-float]
xarray.tests.test_duck_array_ops ‑ test_min_count_nd[prod-True-int]
xarray.tests.test_duck_array_ops ‑ test_min_count_nd[sum-True-bool_]
xarray.tests.test_duck_array_ops ‑ test_min_count_nd[sum-True-float32]
xarray.tests.test_duck_array_ops ‑ test_min_count_nd[sum-True-float]
xarray.tests.test_duck_array_ops ‑ test_min_count_nd[sum-True-int]
xarray.tests.test_duck_array_ops ‑ test_min_count_specific[None-prod-True]
xarray.tests.test_duck_array_ops ‑ test_min_count_specific[None-sum-True]
xarray.tests.test_duck_array_ops ‑ test_min_count_specific[a-prod-True]
xarray.tests.test_duck_array_ops ‑ test_min_count_specific[a-sum-True]
xarray.tests.test_duck_array_ops ‑ test_min_count_specific[b-prod-True]
xarray.tests.test_duck_array_ops ‑ test_min_count_specific[b-sum-True]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[prod-False-True-bool_]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[prod-False-True-float32]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[prod-False-True-float]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[prod-False-True-int]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[prod-True-True-bool_]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[prod-True-True-float32]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[prod-True-True-float]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[prod-True-True-int]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[sum-False-True-bool_]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[sum-False-True-float32]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[sum-False-True-float]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[sum-False-True-int]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[sum-True-True-bool_]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[sum-True-True-float32]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[sum-True-True-float]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[sum-True-True-int]
xarray.tests.test_duck_array_ops ‑ test_push_dask
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-max-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-max-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-max-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-max-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-max-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-max-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-max-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-max-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-mean-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-mean-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-mean-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-mean-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-mean-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-mean-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-mean-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-mean-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-mean-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-mean-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-min-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-min-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-min-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-min-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-min-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-min-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-min-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-min-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-sum-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-sum-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-sum-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-sum-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-sum-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-sum-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-sum-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-sum-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-var-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-var-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-var-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-var-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-var-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-var-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-var-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-var-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-max-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-max-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-max-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-max-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-max-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-max-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-max-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-max-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-mean-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-mean-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-mean-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-mean-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-mean-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-mean-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-mean-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-mean-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-mean-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-mean-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-min-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-min-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-min-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-min-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-min-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-min-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-min-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-min-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-sum-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-sum-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-sum-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-sum-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-sum-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-sum-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-sum-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-sum-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-var-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-var-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-var-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-var-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-var-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-var-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-var-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-var-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-max-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-max-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-max-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-max-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-max-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-max-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-max-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-max-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-mean-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-mean-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-mean-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-mean-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-mean-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-mean-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-mean-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-mean-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-mean-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-mean-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-min-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-min-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-min-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-min-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-min-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-min-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-min-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-min-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-sum-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-sum-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-sum-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-sum-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-sum-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-sum-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-sum-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-sum-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-var-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-var-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-var-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-var-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-var-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-var-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-var-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-var-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-max-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-max-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-max-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-max-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-max-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-max-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-max-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-max-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-mean-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-mean-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-mean-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-mean-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-mean-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-mean-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-mean-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-mean-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-mean-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-mean-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-min-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-min-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-min-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-min-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-min-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-min-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-min-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-min-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-sum-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-sum-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-sum-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-sum-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-sum-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-sum-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-sum-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-sum-True-int-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-var-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-var-True-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-var-True-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-var-True-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-var-True-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-var-True-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-var-True-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-var-True-int-2]
xarray.tests.test_duck_array_ops.TestDaskOps ‑ test_all_nan_arrays
xarray.tests.test_duck_array_ops.TestDaskOps ‑ test_concatenate_type_promotion
xarray.tests.test_duck_array_ops.TestDaskOps ‑ test_count
xarray.tests.test_duck_array_ops.TestDaskOps ‑ test_first
xarray.tests.test_duck_array_ops.TestDaskOps ‑ test_last
xarray.tests.test_duck_array_ops.TestDaskOps ‑ test_stack_type_promotion
xarray.tests.test_duck_array_ops.TestDaskOps ‑ test_where_type_promotion
xarray.tests.test_error_messages ‑ test_no_var_in_dataset[1-dask]
xarray.tests.test_formatting ‑ test_empty_cftimeindex_repr
xarray.tests.test_formatting ‑ test_repr_file_collapsed
xarray.tests.test_formatting.TestFormatting ‑ test_array_scalar_format
xarray.tests.test_formatting_html ‑ test_short_data_repr_html_dask
xarray.tests.test_groupby ‑ test_default_flox_method
xarray.tests.test_groupby ‑ test_groupby_flox_kwargs[kwargs0]
xarray.tests.test_groupby ‑ test_groupby_flox_kwargs[kwargs1]
xarray.tests.test_groupby ‑ test_groupby_math_auto_chunk
xarray.tests.test_groupby ‑ test_min_count_error[True]
xarray.tests.test_groupby ‑ test_min_count_vs_flox[1-False-prod]
xarray.tests.test_groupby ‑ test_min_count_vs_flox[1-False-sum]
xarray.tests.test_groupby ‑ test_min_count_vs_flox[1-True-prod]
xarray.tests.test_groupby ‑ test_min_count_vs_flox[1-True-sum]
xarray.tests.test_groupby ‑ test_min_count_vs_flox[None-False-prod]
xarray.tests.test_groupby ‑ test_min_count_vs_flox[None-False-sum]
xarray.tests.test_groupby ‑ test_min_count_vs_flox[None-True-prod]
xarray.tests.test_groupby ‑ test_min_count_vs_flox[None-True-sum]
xarray.tests.test_groupby.TestDataArrayResample ‑ test_resample[True]
xarray.tests.test_groupby.TestDataArrayResample ‑ test_resample_doctest[True]
xarray.tests.test_groupby.TestDataArrayResample ‑ test_resample_drop_nondim_coords
xarray.tests.test_groupby.TestDataArrayResample ‑ test_upsample_interpolate
xarray.tests.test_groupby.TestDataArrayResample ‑ test_upsample_interpolate_bug_2197
xarray.tests.test_groupby.TestDataArrayResample ‑ test_upsample_interpolate_dask[False]
xarray.tests.test_groupby.TestDataArrayResample ‑ test_upsample_interpolate_dask[True]
xarray.tests.test_groupby.TestDataArrayResample ‑ test_upsample_interpolate_regression_1605
xarray.tests.test_groupby.TestDatasetResample ‑ test_resample_drop_nondim_coords
xarray.tests.test_indexes ‑ test_safe_cast_to_index_cftimeindex
xarray.tests.test_indexes ‑ test_safe_cast_to_index_datetime_datetime
xarray.tests.test_indexing ‑ test_advanced_indexing_dask_array
xarray.tests.test_indexing ‑ test_create_mask_dask
xarray.tests.test_indexing ‑ test_indexing_dask_array
xarray.tests.test_indexing ‑ test_indexing_dask_array_scalar
xarray.tests.test_indexing ‑ test_vectorized_indexing_dask_array
xarray.tests.test_interp ‑ test_3641
xarray.tests.test_interp ‑ test_cftime
xarray.tests.test_interp ‑ test_cftime_list_of_strings
xarray.tests.test_interp ‑ test_cftime_single_string
xarray.tests.test_interp ‑ test_cftime_to_non_cftime_error
xarray.tests.test_interp ‑ test_cftime_type_error
xarray.tests.test_interp ‑ test_coord_attrs[2.5-True]
xarray.tests.test_interp ‑ test_coord_attrs[x1-True]
xarray.tests.test_interp ‑ test_coord_attrs[x2-False]
xarray.tests.test_interp ‑ test_dataset
xarray.tests.test_interp ‑ test_datetime[2000-01-01T12:00-0.5]
xarray.tests.test_interp ‑ test_datetime[x_new0-expected0]
xarray.tests.test_interp ‑ test_datetime[x_new1-expected1]
xarray.tests.test_interp ‑ test_datetime[x_new2-expected2]
xarray.tests.test_interp ‑ test_datetime[x_new3-expected3]
xarray.tests.test_interp ‑ test_datetime[x_new4-0.5]
xarray.tests.test_interp ‑ test_datetime_interp_noerror
xarray.tests.test_interp ‑ test_datetime_single_string
xarray.tests.test_interp ‑ test_datetime_to_non_datetime_error
xarray.tests.test_interp ‑ test_decompose[linear]
xarray.tests.test_interp ‑ test_decompose[nearest]
xarray.tests.test_interp ‑ test_dimension_wo_coords
xarray.tests.test_interp ‑ test_dtype
xarray.tests.test_interp ‑ test_errors[False]
xarray.tests.test_interp ‑ test_errors[True]
xarray.tests.test_interp ‑ test_interp1d_bounds_error
xarray.tests.test_interp ‑ test_interp1d_complex_out_of_bounds
xarray.tests.test_interp ‑ test_interp_like
xarray.tests.test_interp ‑ test_interpolate_1d[chunk_y-x-cubic]
xarray.tests.test_interp ‑ test_interpolate_1d[chunk_y-x-linear]
xarray.tests.test_interp ‑ test_interpolate_1d[chunk_y-y-cubic]
xarray.tests.test_interp ‑ test_interpolate_1d[chunk_y-y-linear]
xarray.tests.test_interp ‑ test_interpolate_1d[no_chunk-x-cubic]
xarray.tests.test_interp ‑ test_interpolate_1d[no_chunk-x-linear]
xarray.tests.test_interp ‑ test_interpolate_1d[no_chunk-y-cubic]
xarray.tests.test_interp ‑ test_interpolate_1d[no_chunk-y-linear]
xarray.tests.test_interp ‑ test_interpolate_1d_methods[cubic]
xarray.tests.test_interp ‑ test_interpolate_1d_methods[zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-0-False-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-0-False-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-0-False-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-0-False-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-0-False-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-0-False-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-0-True-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-0-True-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-0-True-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-0-True-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-0-True-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-0-True-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-1-False-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-1-False-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-1-False-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-1-False-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-1-False-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-1-False-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-1-True-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-1-True-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-1-True-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-1-True-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-1-True-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[1-1-1-True-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-0-False-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-0-False-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-0-False-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-0-False-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-0-False-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-0-False-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-0-True-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-0-True-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-0-True-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-0-True-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-0-True-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-0-True-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-1-False-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-1-False-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-1-False-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-1-False-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-1-False-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-1-False-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-1-True-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-1-True-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-1-True-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-1-True-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-1-True-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-1-1-True-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-0-False-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-0-False-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-0-False-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-0-False-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-0-False-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-0-False-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-0-True-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-0-True-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-0-True-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-0-True-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-0-True-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-0-True-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-1-False-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-1-False-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-1-False-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-1-False-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-1-False-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-1-False-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-1-True-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-1-True-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-1-True-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-1-True-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-1-True-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-1-True-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-2-False-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-2-False-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-2-False-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-2-False-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-2-False-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-2-False-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-2-True-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-2-True-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-2-True-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-2-True-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-2-True-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[2-2-2-True-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-0-False-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-0-False-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-0-False-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-0-False-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-0-False-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-0-False-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-0-True-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-0-True-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-0-True-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-0-True-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-0-True-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-0-True-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-1-False-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-1-False-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-1-False-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-1-False-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-1-False-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-1-False-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-1-True-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-1-True-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-1-True-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-1-True-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-1-True-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-1-1-True-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-0-False-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-0-False-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-0-False-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-0-False-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-0-False-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-0-False-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-0-True-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-0-True-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-0-True-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-0-True-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-0-True-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-0-True-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-1-False-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-1-False-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-1-False-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-1-False-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-1-False-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-1-False-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-1-True-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-1-True-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-1-True-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-1-True-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-1-True-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-1-True-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-2-False-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-2-False-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-2-False-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-2-False-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-2-False-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-2-False-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-2-True-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-2-True-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-2-True-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-2-True-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-2-True-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-2-2-True-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-0-False-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-0-False-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-0-False-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-0-False-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-0-False-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-0-False-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-0-True-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-0-True-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-0-True-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-0-True-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-0-True-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-0-True-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-1-False-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-1-False-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-1-False-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-1-False-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-1-False-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-1-False-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-1-True-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-1-True-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-1-True-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-1-True-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-1-True-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-1-True-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-2-False-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-2-False-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-2-False-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-2-False-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-2-False-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-2-False-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-2-True-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-2-True-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-2-True-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-2-True-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-2-True-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-2-True-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-3-False-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-3-False-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-3-False-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-3-False-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-3-False-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-3-False-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-3-True-cubic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-3-True-linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-3-True-nearest]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-3-True-quadratic]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-3-True-slinear]
xarray.tests.test_interp ‑ test_interpolate_chunk_1d[3-3-3-True-zero]
xarray.tests.test_interp ‑ test_interpolate_chunk_advanced[linear]
xarray.tests.test_interp ‑ test_interpolate_chunk_advanced[nearest]
xarray.tests.test_interp ‑ test_interpolate_dimorder[2D]
xarray.tests.test_interp ‑ test_interpolate_dimorder[3D]
xarray.tests.test_interp ‑ test_interpolate_nd[chunked]
xarray.tests.test_interp ‑ test_interpolate_nd[no_chunk]
xarray.tests.test_interp ‑ test_interpolate_nd_nd
xarray.tests.test_interp ‑ test_interpolate_nd_scalar[chunked-linear]
xarray.tests.test_interp ‑ test_interpolate_nd_scalar[no_chunk-linear]
xarray.tests.test_interp ‑ test_interpolate_nd_with_nan
xarray.tests.test_interp ‑ test_interpolate_scalar[chunk_y-linear]
xarray.tests.test_interp ‑ test_interpolate_scalar[no_chunk-linear]
xarray.tests.test_interp ‑ test_interpolate_vectorize[False]
xarray.tests.test_interp ‑ test_interpolate_vectorize[True]
xarray.tests.test_interp ‑ test_keywargs
xarray.tests.test_interp ‑ test_nans[False]
xarray.tests.test_interp ‑ test_nans[True]
xarray.tests.test_interp ‑ test_sorted
xarray.tests.test_missing ‑ test_bfill_dataset
xarray.tests.test_missing ‑ test_bfill_use_bottleneck_dask
xarray.tests.test_missing ‑ test_ffill
xarray.tests.test_missing ‑ test_ffill_bfill_allnans
xarray.tests.test_missing ‑ test_ffill_bfill_dask[bfill]
xarray.tests.test_missing ‑ test_ffill_bfill_dask[ffill]
xarray.tests.test_missing ‑ test_ffill_bfill_nonans
xarray.tests.test_missing ‑ test_ffill_dataset
xarray.tests.test_missing ‑ test_ffill_functions
xarray.tests.test_missing ‑ test_ffill_limit
xarray.tests.test_missing ‑ test_ffill_use_bottleneck_dask
xarray.tests.test_missing ‑ test_ffill_use_numbagg_dask
xarray.tests.test_missing ‑ test_get_clean_interp_index_cf_calendar[360_day]
xarray.tests.test_missing ‑ test_get_clean_interp_index_cf_calendar[365_day]
xarray.tests.test_missing ‑ test_get_clean_interp_index_cf_calendar[366_day]
xarray.tests.test_missing ‑ test_get_clean_interp_index_cf_calendar[all_leap]
xarray.tests.test_missing ‑ test_get_clean_interp_index_cf_calendar[gregorian]
xarray.tests.test_missing ‑ test_get_clean_interp_index_cf_calendar[julian]
xarray.tests.test_missing ‑ test_get_clean_interp_index_cf_calendar[proleptic_gregorian]
xarray.tests.test_missing ‑ test_get_clean_interp_index_cf_calendar[standard]
xarray.tests.test_missing ‑ test_get_clean_interp_index_dt[gregorian-1D]
xarray.tests.test_missing ‑ test_get_clean_interp_index_dt[proleptic_gregorian-1M]
xarray.tests.test_missing ‑ test_get_clean_interp_index_potential_overflow
xarray.tests.test_missing ‑ test_interp1d_fastrack[all nans:cubic]
xarray.tests.test_missing ‑ test_interp1d_fastrack[all nans:linear]
xarray.tests.test_missing ‑ test_interp1d_fastrack[all nans:nearest]
xarray.tests.test_missing ‑ test_interp1d_fastrack[all nans:polynomial]
xarray.tests.test_missing ‑ test_interp1d_fastrack[all nans:quadratic]
xarray.tests.test_missing ‑ test_interp1d_fastrack[all nans:slinear]
xarray.tests.test_missing ‑ test_interp1d_fastrack[all nans:zero]
xarray.tests.test_missing ‑ test_interp1d_fastrack[no nans:cubic]
xarray.tests.test_missing ‑ test_interp1d_fastrack[no nans:linear]
xarray.tests.test_missing ‑ test_interp1d_fastrack[no nans:nearest]
xarray.tests.test_missing ‑ test_interp1d_fastrack[no nans:polynomial]
xarray.tests.test_missing ‑ test_interp1d_fastrack[no nans:quadratic]
xarray.tests.test_missing ‑ test_interp1d_fastrack[no nans:slinear]
xarray.tests.test_missing ‑ test_interp1d_fastrack[no nans:zero]
xarray.tests.test_missing ‑ test_interp1d_fastrack[one nan:cubic]
xarray.tests.test_missing ‑ test_interp1d_fastrack[one nan:linear]
xarray.tests.test_missing ‑ test_interp1d_fastrack[one nan:nearest]
xarray.tests.test_missing ‑ test_interp1d_fastrack[one nan:polynomial]
xarray.tests.test_missing ‑ test_interp1d_fastrack[one nan:quadratic]
xarray.tests.test_missing ‑ test_interp1d_fastrack[one nan:slinear]
xarray.tests.test_missing ‑ test_interp1d_fastrack[one nan:zero]
xarray.tests.test_missing ‑ test_interpolate_dask
xarray.tests.test_missing ‑ test_interpolate_dask_expected_dtype[int-linear]
xarray.tests.test_missing ‑ test_interpolate_dask_expected_dtype[int-nearest]
xarray.tests.test_missing ‑ test_interpolate_dask_raises_for_invalid_chunk_dim
xarray.tests.test_missing ‑ test_interpolate_kwargs
xarray.tests.test_missing ‑ test_interpolate_limits
xarray.tests.test_missing ‑ test_interpolate_methods
xarray.tests.test_missing ‑ test_interpolate_na_2d[None]
xarray.tests.test_missing ‑ test_interpolate_na_2d[coords1]
xarray.tests.test_missing ‑ test_interpolate_na_max_gap_time_specifier[3h-<lambda>0-cftime_range]
xarray.tests.test_missing ‑ test_interpolate_na_max_gap_time_specifier[3h-<lambda>0-date_range]
xarray.tests.test_missing ‑ test_interpolate_na_max_gap_time_specifier[3h-<lambda>1-cftime_range]
xarray.tests.test_missing ‑ test_interpolate_na_max_gap_time_specifier[3h-<lambda>1-date_range]
xarray.tests.test_missing ‑ test_interpolate_na_max_gap_time_specifier[max_gap1-<lambda>0-cftime_range]
xarray.tests.test_missing ‑ test_interpolate_na_max_gap_time_specifier[max_gap1-<lambda>0-date_range]
xarray.tests.test_missing ‑ test_interpolate_na_max_gap_time_specifier[max_gap1-<lambda>1-cftime_range]
xarray.tests.test_missing ‑ test_interpolate_na_max_gap_time_specifier[max_gap1-<lambda>1-date_range]
xarray.tests.test_missing ‑ test_interpolate_na_max_gap_time_specifier[max_gap2-<lambda>0-cftime_range]
xarray.tests.test_missing ‑ test_interpolate_na_max_gap_time_specifier[max_gap2-<lambda>0-date_range]
xarray.tests.test_missing ‑ test_interpolate_na_max_gap_time_specifier[max_gap2-<lambda>1-cftime_range]
xarray.tests.test_missing ‑ test_interpolate_na_max_gap_time_specifier[max_gap2-<lambda>1-date_range]
xarray.tests.test_missing ‑ test_interpolate_na_nan_block_lengths[y0-lengths_expected0]
xarray.tests.test_missing ‑ test_interpolate_na_nan_block_lengths[y1-lengths_expected1]
xarray.tests.test_missing ‑ test_interpolate_na_nan_block_lengths[y2-lengths_expected2]
xarray.tests.test_missing ‑ test_interpolate_pd_compat[cubic-47.11]
xarray.tests.test_missing ‑ test_interpolate_pd_compat[cubic-None]
xarray.tests.test_missing ‑ test_interpolate_pd_compat[cubic-nan]
xarray.tests.test_missing ‑ test_interpolate_pd_compat[linear-47.11]
xarray.tests.test_missing ‑ test_interpolate_pd_compat[linear-None]
xarray.tests.test_missing ‑ test_interpolate_pd_compat[linear-nan]
xarray.tests.test_missing ‑ test_interpolate_pd_compat[nearest-47.11]
xarray.tests.test_missing ‑ test_interpolate_pd_compat[nearest-None]
xarray.tests.test_missing ‑ test_interpolate_pd_compat[nearest-nan]
xarray.tests.test_missing ‑ test_interpolate_pd_compat[quadratic-47.11]
xarray.tests.test_missing ‑ test_interpolate_pd_compat[quadratic-None]
xarray.tests.test_missing ‑ test_interpolate_pd_compat[quadratic-nan]
xarray.tests.test_missing ‑ test_interpolate_pd_compat[slinear-47.11]
xarray.tests.test_missing ‑ test_interpolate_pd_compat[slinear-None]
xarray.tests.test_missing ‑ test_interpolate_pd_compat[slinear-nan]
xarray.tests.test_missing ‑ test_interpolate_pd_compat[zero-47.11]
xarray.tests.test_missing ‑ test_interpolate_pd_compat[zero-None]
xarray.tests.test_missing ‑ test_interpolate_pd_compat[zero-nan]
xarray.tests.test_missing ‑ test_interpolate_pd_compat_non_uniform_index
xarray.tests.test_missing ‑ test_interpolate_pd_compat_polynomial
xarray.tests.test_missing ‑ test_interpolate_unsorted_index_raises
xarray.tests.test_missing ‑ test_interpolators
xarray.tests.test_missing ‑ test_interpolators_complex_out_of_bounds
xarray.tests.test_missing ‑ test_scipy_methods_function[akima]
xarray.tests.test_missing ‑ test_scipy_methods_function[barycentric]
xarray.tests.test_missing ‑ test_scipy_methods_function[krogh]
xarray.tests.test_missing ‑ test_scipy_methods_function[pchip]
xarray.tests.test_missing ‑ test_scipy_methods_function[spline]
xarray.tests.test_namedarray.TestNamedArray ‑ test_init[expected1]
xarray.tests.test_parallelcompat.TestGetChunkManager ‑ test_choose_dask_over_other_chunkmanagers
xarray.tests.test_parallelcompat.TestGetChunkManager ‑ test_get_dask_if_installed
xarray.tests.test_parallelcompat.TestGetChunkedArrayType ‑ test_detect_dask_if_installed
xarray.tests.test_parallelcompat.TestGetChunkedArrayType ‑ test_raise_on_mixed_array_types
xarray.tests.test_plot ‑ test_assert_valid_xy
xarray.tests.test_plot ‑ test_datarray_scatter[A-B-None-None-None-None-None-None-None]
xarray.tests.test_plot ‑ test_datarray_scatter[A-B-None-y-x-None-None-True-True]
xarray.tests.test_plot ‑ test_datarray_scatter[A-B-z-None-None-None-None-None-None]
xarray.tests.test_plot ‑ test_datarray_scatter[A-B-z-y-x-None-None-True-True]
xarray.tests.test_plot ‑ test_datarray_scatter[A-B-z-y-x-w-None-True-True]
xarray.tests.test_plot ‑ test_datarray_scatter[B-A-None-w-None-None-None-True-None]
xarray.tests.test_plot ‑ test_datarray_scatter[B-A-z-w-None-None-None-True-None]
xarray.tests.test_plot ‑ test_facetgrid_axes_raises_deprecation_warning
xarray.tests.test_plot ‑ test_facetgrid_single_contour
xarray.tests.test_plot ‑ test_get_axis[auto_aspect]
xarray.tests.test_plot ‑ test_get_axis[ax]
xarray.tests.test_plot ‑ test_get_axis[default]
xarray.tests.test_plot ‑ test_get_axis[default_kwargs]
xarray.tests.test_plot ‑ test_get_axis[equal_aspect]
xarray.tests.test_plot ‑ test_get_axis[figsize]
xarray.tests.test_plot ‑ test_get_axis[figsize_kwargs]
xarray.tests.test_plot ‑ test_get_axis[size+aspect]
xarray.tests.test_plot ‑ test_get_axis[size]
xarray.tests.test_plot ‑ test_get_axis[size_kwargs]
xarray.tests.test_plot ‑ test_get_axis_cartopy[default]
xarray.tests.test_plot ‑ test_get_axis_cartopy[figsize]
xarray.tests.test_plot ‑ test_get_axis_cartopy[size+aspect]
xarray.tests.test_plot ‑ test_get_axis_cartopy[size]
xarray.tests.test_plot ‑ test_get_axis_current
xarray.tests.test_plot ‑ test_get_axis_raises
xarray.tests.test_plot ‑ test_maybe_gca
xarray.tests.test_plot ‑ test_plot1d_default_rcparams
xarray.tests.test_plot ‑ test_plot1d_filtered_nulls
xarray.tests.test_plot ‑ test_plot_empty_raises[__call__-empty]
xarray.tests.test_plot ‑ test_plot_empty_raises[__call__-scalar]
xarray.tests.test_plot ‑ test_plot_empty_raises[contour-empty]
xarray.tests.test_plot ‑ test_plot_empty_raises[contour-scalar]
xarray.tests.test_plot ‑ test_plot_empty_raises[contourf-empty]
xarray.tests.test_plot ‑ test_plot_empty_raises[contourf-scalar]
xarray.tests.test_plot ‑ test_plot_empty_raises[hist-empty]
xarray.tests.test_plot ‑ test_plot_empty_raises[hist-scalar]
xarray.tests.test_plot ‑ test_plot_empty_raises[imshow-empty]
xarray.tests.test_plot ‑ test_plot_empty_raises[imshow-scalar]
xarray.tests.test_plot ‑ test_plot_empty_raises[line-empty]
xarray.tests.test_plot ‑ test_plot_empty_raises[line-scalar]
xarray.tests.test_plot ‑ test_plot_empty_raises[pcolormesh-empty]
xarray.tests.test_plot ‑ test_plot_empty_raises[pcolormesh-scalar]
xarray.tests.test_plot ‑ test_plot_empty_raises[scatter-empty]
xarray.tests.test_plot ‑ test_plot_empty_raises[scatter-scalar]
xarray.tests.test_plot ‑ test_plot_empty_raises[step-empty]
xarray.tests.test_plot ‑ test_plot_empty_raises[step-scalar]
xarray.tests.test_plot ‑ test_plot_empty_raises[surface-empty]
xarray.tests.test_plot ‑ test_plot_empty_raises[surface-scalar]
xarray.tests.test_plot ‑ test_plot_transposed_nondim_coord[contour]
xarray.tests.test_plot ‑ test_plot_transposed_nondim_coord[contourf]
xarray.tests.test_plot ‑ test_plot_transposed_nondim_coord[pcolormesh]
xarray.tests.test_plot ‑ test_plot_transposes_properly[imshow]
xarray.tests.test_plot ‑ test_plot_transposes_properly[pcolormesh]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xincrease_kwarg[1-False]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xincrease_kwarg[1-True]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xincrease_kwarg[2-False]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xincrease_kwarg[2-True]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xincrease_kwarg[3-False]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xincrease_kwarg[3-True]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xlim_kwarg[1]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xlim_kwarg[2]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xlim_kwarg[3]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xscale_kwarg[1-linear]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xscale_kwarg[1-logit]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xscale_kwarg[1-symlog]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xscale_kwarg[2-linear]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xscale_kwarg[2-logit]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xscale_kwarg[2-symlog]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xscale_kwarg[3-linear]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xscale_kwarg[3-logit]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xscale_kwarg[3-symlog]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xscale_log_kwarg[1]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xscale_log_kwarg[2]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xticks_kwarg[1]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xticks_kwarg[2]
xarray.tests.test_plot.TestAxesKwargs ‑ test_xticks_kwarg[3]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yincrease_kwarg[1-False]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yincrease_kwarg[1-True]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yincrease_kwarg[2-False]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yincrease_kwarg[2-True]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yincrease_kwarg[3-False]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yincrease_kwarg[3-True]
xarray.tests.test_plot.TestAxesKwargs ‑ test_ylim_kwarg[1]
xarray.tests.test_plot.TestAxesKwargs ‑ test_ylim_kwarg[2]
xarray.tests.test_plot.TestAxesKwargs ‑ test_ylim_kwarg[3]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yscale_kwarg[1-linear]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yscale_kwarg[1-logit]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yscale_kwarg[1-symlog]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yscale_kwarg[2-linear]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yscale_kwarg[2-logit]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yscale_kwarg[2-symlog]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yscale_kwarg[3-linear]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yscale_kwarg[3-logit]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yscale_kwarg[3-symlog]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yscale_log_kwarg[1]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yscale_log_kwarg[2]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yticks_kwarg[1]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yticks_kwarg[2]
xarray.tests.test_plot.TestAxesKwargs ‑ test_yticks_kwarg[3]
xarray.tests.test_plot.TestCFDatetimePlot ‑ test_cfdatetime_contour_plot
xarray.tests.test_plot.TestCFDatetimePlot ‑ test_cfdatetime_line_plot
xarray.tests.test_plot.TestCFDatetimePlot ‑ test_cfdatetime_pcolormesh_plot
xarray.tests.test_plot.TestContour ‑ test_1d_raises_valueerror
xarray.tests.test_plot.TestContour ‑ test_2d_coord_names
xarray.tests.test_plot.TestContour ‑ test_2d_coord_with_interval
xarray.tests.test_plot.TestContour ‑ test_2d_function_and_method_signature_same
xarray.tests.test_plot.TestContour ‑ test_3d_raises_valueerror
xarray.tests.test_plot.TestContour ‑ test_bad_x_string_exception
xarray.tests.test_plot.TestContour ‑ test_bool
xarray.tests.test_plot.TestContour ‑ test_can_change_default_cmap
xarray.tests.test_plot.TestContour ‑ test_can_pass_in_axis
xarray.tests.test_plot.TestContour ‑ test_can_plot_all_nans
xarray.tests.test_plot.TestContour ‑ test_can_plot_axis_size_one
xarray.tests.test_plot.TestContour ‑ test_cmap_and_color_both
xarray.tests.test_plot.TestContour ‑ test_colorbar_default_label
xarray.tests.test_plot.TestContour ‑ test_colorbar_kwargs
xarray.tests.test_plot.TestContour ‑ test_colormap_error_norm_and_vmin_vmax
xarray.tests.test_plot.TestContour ‑ test_colors
xarray.tests.test_plot.TestContour ‑ test_colors_np_levels
xarray.tests.test_plot.TestContour ‑ test_complex_raises_typeerror
xarray.tests.test_plot.TestContour ‑ test_convenient_facetgrid
xarray.tests.test_plot.TestContour ‑ test_convenient_facetgrid_4d
xarray.tests.test_plot.TestContour ‑ test_coord_strings
xarray.tests.test_plot.TestContour ‑ test_dates_are_concise
xarray.tests.test_plot.TestContour ‑ test_default_cmap
xarray.tests.test_plot.TestContour ‑ test_default_title
xarray.tests.test_plot.TestContour ‑ test_disallows_rgb_arg
xarray.tests.test_plot.TestContour ‑ test_diverging_color_limits
xarray.tests.test_plot.TestContour ‑ test_facetgrid_cbar_kwargs
xarray.tests.test_plot.TestContour ‑ test_facetgrid_cmap
xarray.tests.test_plot.TestContour ‑ test_facetgrid_map_only_appends_mappables
xarray.tests.test_plot.TestContour ‑ test_facetgrid_no_cbar_ax
xarray.tests.test_plot.TestContour ‑ test_label_names
xarray.tests.test_plot.TestContour ‑ test_multiindex_level_as_coord
xarray.tests.test_plot.TestContour ‑ test_multiindex_raises_typeerror
xarray.tests.test_plot.TestContour ‑ test_no_labels
xarray.tests.test_plot.TestContour ‑ test_non_linked_coords
xarray.tests.test_plot.TestContour ‑ test_non_linked_coords_transpose
xarray.tests.test_plot.TestContour ‑ test_nonnumeric_index
xarray.tests.test_plot.TestContour ‑ test_plot_nans
xarray.tests.test_plot.TestContour ‑ test_positional_coord_string
xarray.tests.test_plot.TestContour ‑ test_seaborn_palette_as_cmap
xarray.tests.test_plot.TestContour ‑ test_single_level
xarray.tests.test_plot.TestContour ‑ test_verbose_facetgrid
xarray.tests.test_plot.TestContour ‑ test_viridis_cmap
xarray.tests.test_plot.TestContour ‑ test_xy_strings
xarray.tests.test_plot.TestContour ‑ test_xyincrease_defaults
xarray.tests.test_plot.TestContour ‑ test_xyincrease_false_changes_axes
xarray.tests.test_plot.TestContour ‑ test_xyincrease_true_changes_axes
xarray.tests.test_plot.TestContourf ‑ test_1d_raises_valueerror
xarray.tests.test_plot.TestContourf ‑ test_2d_coord_names
xarray.tests.test_plot.TestContourf ‑ test_2d_coord_with_interval
xarray.tests.test_plot.TestContourf ‑ test_2d_function_and_method_signature_same
xarray.tests.test_plot.TestContourf ‑ test_3d_raises_valueerror
xarray.tests.test_plot.TestContourf ‑ test_bad_x_string_exception
xarray.tests.test_plot.TestContourf ‑ test_bool
xarray.tests.test_plot.TestContourf ‑ test_can_change_default_cmap
xarray.tests.test_plot.TestContourf ‑ test_can_pass_in_axis
xarray.tests.test_plot.TestContourf ‑ test_can_plot_all_nans
xarray.tests.test_plot.TestContourf ‑ test_can_plot_axis_size_one
xarray.tests.test_plot.TestContourf ‑ test_cmap_and_color_both
xarray.tests.test_plot.TestContourf ‑ test_colorbar_default_label
xarray.tests.test_plot.TestContourf ‑ test_colorbar_kwargs
xarray.tests.test_plot.TestContourf ‑ test_colormap_error_norm_and_vmin_vmax
xarray.tests.test_plot.TestContourf ‑ test_complex_raises_typeerror
xarray.tests.test_plot.TestContourf ‑ test_contourf_called
xarray.tests.test_plot.TestContourf ‑ test_convenient_facetgrid
xarray.tests.test_plot.TestContourf ‑ test_convenient_facetgrid_4d
xarray.tests.test_plot.TestContourf ‑ test_coord_strings
xarray.tests.test_plot.TestContourf ‑ test_dates_are_concise
xarray.tests.test_plot.TestContourf ‑ test_default_cmap
xarray.tests.test_plot.TestContourf ‑ test_default_title
xarray.tests.test_plot.TestContourf ‑ test_disallows_rgb_arg
xarray.tests.test_plot.TestContourf ‑ test_diverging_color_limits
xarray.tests.test_plot.TestContourf ‑ test_extend
xarray.tests.test_plot.TestContourf ‑ test_facetgrid_cbar_kwargs
xarray.tests.test_plot.TestContourf ‑ test_facetgrid_cmap
xarray.tests.test_plot.TestContourf ‑ test_facetgrid_map_only_appends_mappables
xarray.tests.test_plot.TestContourf ‑ test_facetgrid_no_cbar_ax
xarray.tests.test_plot.TestContourf ‑ test_label_names
xarray.tests.test_plot.TestContourf ‑ test_levels
xarray.tests.test_plot.TestContourf ‑ test_multiindex_level_as_coord
xarray.tests.test_plot.TestContourf ‑ test_multiindex_raises_typeerror
xarray.tests.test_plot.TestContourf ‑ test_no_labels
xarray.tests.test_plot.TestContourf ‑ test_non_linked_coords
xarray.tests.test_plot.TestContourf ‑ test_non_linked_coords_transpose
xarray.tests.test_plot.TestContourf ‑ test_nonnumeric_index
xarray.tests.test_plot.TestContourf ‑ test_plot_nans
xarray.tests.test_plot.TestContourf ‑ test_positional_coord_string
xarray.tests.test_plot.TestContourf ‑ test_primitive_artist_returned
xarray.tests.test_plot.TestContourf ‑ test_seaborn_palette_as_cmap
xarray.tests.test_plot.TestContourf ‑ test_verbose_facetgrid
xarray.tests.test_plot.TestContourf ‑ test_viridis_cmap
xarray.tests.test_plot.TestContourf ‑ test_xy_strings
xarray.tests.test_plot.TestContourf ‑ test_xyincrease_defaults
xarray.tests.test_plot.TestContourf ‑ test_xyincrease_false_changes_axes
xarray.tests.test_plot.TestContourf ‑ test_xyincrease_true_changes_axes
xarray.tests.test_plot.TestDatasetQuiverPlots ‑ test_add_guide[False-None-False-False]
xarray.tests.test_plot.TestDatasetQuiverPlots ‑ test_add_guide[None-None-False-True]
xarray.tests.test_plot.TestDatasetQuiverPlots ‑ test_add_guide[True-None-False-True]
xarray.tests.test_plot.TestDatasetQuiverPlots ‑ test_add_guide[True-continuous-False-True]
xarray.tests.test_plot.TestDatasetQuiverPlots ‑ test_facetgrid
xarray.tests.test_plot.TestDatasetQuiverPlots ‑ test_quiver
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_accessor
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_add_guide[False-None-False-False]
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_add_guide[False-discrete-False-False]
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_add_guide[None-None-False-True]
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_add_guide[True-None-False-True]
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_add_guide[True-continuous-False-True]
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_add_guide[True-discrete-True-False]
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_add_legend_by_default
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_axes_in_faceted_plot
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_bad_args[bad_x]
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_bad_args[bad_y]
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_datetime_hue
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_default_labels
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_facetgrid_hue_style
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_facetgrid_shape
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_figsize_and_size
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_legend_labels
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_legend_labels_facetgrid
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_non_numeric_legend
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_scatter[A-B-x-col]
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_scatter[x-row-A-B]
xarray.tests.test_plot.TestDatasetStreamplotPlots ‑ test_facetgrid
xarray.tests.test_plot.TestDatasetStreamplotPlots ‑ test_streamline
xarray.tests.test_plot.TestDatetimePlot ‑ test_datetime_line_plot
xarray.tests.test_plot.TestDatetimePlot ‑ test_datetime_plot1d
xarray.tests.test_plot.TestDatetimePlot ‑ test_datetime_plot2d
xarray.tests.test_plot.TestDatetimePlot ‑ test_datetime_units
xarray.tests.test_plot.TestDetermineCmapParams ‑ test_center
xarray.tests.test_plot.TestDetermineCmapParams ‑ test_cmap_divergent_option
xarray.tests.test_plot.TestDetermineCmapParams ‑ test_cmap_sequential_explicit_option
xarray.tests.test_plot.TestDetermineCmapParams ‑ test_cmap_sequential_option
xarray.tests.test_plot.TestDetermineCmapParams ‑ test_divergentcontrol
xarray.tests.test_plot.TestDetermineCmapParams ‑ test_integer_levels
xarray.tests.test_plot.TestDetermineCmapParams ‑ test_list_levels
xarray.tests.test_plot.TestDetermineCmapParams ‑ test_nan_inf_are_ignored
xarray.tests.test_plot.TestDetermineCmapParams ‑ test_norm_sets_vmin_vmax
xarray.tests.test_plot.TestDetermineCmapParams ‑ test_robust
xarray.tests.test_plot.TestDiscreteColorMap ‑ test_build_discrete_cmap
xarray.tests.test_plot.TestDiscreteColorMap ‑ test_discrete_colormap_int_levels
xarray.tests.test_plot.TestDiscreteColorMap ‑ test_discrete_colormap_list_levels_and_vmin_or_vmax
xarray.tests.test_plot.TestDiscreteColorMap ‑ test_discrete_colormap_list_of_levels
xarray.tests.test_plot.TestDiscreteColorMap ‑ test_discrete_colormap_provided_boundary_norm
xarray.tests.test_plot.TestDiscreteColorMap ‑ test_discrete_colormap_provided_boundary_norm_matching_cmap_levels
xarray.tests.test_plot.TestDiscreteColorMap ‑ test_recover_from_seaborn_jet_exception
xarray.tests.test_plot.TestFacetGrid ‑ test_can_set_norm
xarray.tests.test_plot.TestFacetGrid ‑ test_can_set_vmin_vmax
xarray.tests.test_plot.TestFacetGrid ‑ test_colorbar
xarray.tests.test_plot.TestFacetGrid ‑ test_colorbar_scatter
xarray.tests.test_plot.TestFacetGrid ‑ test_empty_cell
xarray.tests.test_plot.TestFacetGrid ‑ test_facetgrid_colorbar
xarray.tests.test_plot.TestFacetGrid ‑ test_facetgrid_polar
xarray.tests.test_plot.TestFacetGrid ‑ test_figure_size
xarray.tests.test_plot.TestFacetGrid ‑ test_float_index
xarray.tests.test_plot.TestFacetGrid ‑ test_groups
xarray.tests.test_plot.TestFacetGrid ‑ test_map
xarray.tests.test_plot.TestFacetGrid ‑ test_map_dataset
xarray.tests.test_plot.TestFacetGrid ‑ test_names_appear_somewhere
xarray.tests.test_plot.TestFacetGrid ‑ test_no_args
xarray.tests.test_plot.TestFacetGrid ‑ test_nonunique_index_error
xarray.tests.test_plot.TestFacetGrid ‑ test_norow_nocol_error
xarray.tests.test_plot.TestFacetGrid ‑ test_num_ticks
xarray.tests.test_plot.TestFacetGrid ‑ test_robust
xarray.tests.test_plot.TestFacetGrid ‑ test_set_axis_labels
xarray.tests.test_plot.TestFacetGrid ‑ test_text_not_super_long
xarray.tests.test_plot.TestFacetGrid ‑ test_vmin_vmax_equal
xarray.tests.test_plot.TestFacetGrid4d ‑ test_default_labels
xarray.tests.test_plot.TestFacetGrid4d ‑ test_title_kwargs
xarray.tests.test_plot.TestFacetedLinePlots ‑ test_axes_in_faceted_plot
xarray.tests.test_plot.TestFacetedLinePlots ‑ test_default_labels
xarray.tests.test_plot.TestFacetedLinePlots ‑ test_facetgrid_shape
xarray.tests.test_plot.TestFacetedLinePlots ‑ test_figsize_and_size
Check notice on line 0 in .github
github-actions / Test Results
7357 skipped tests found (test 5403 to 6117)
There are 7357 skipped tests, see "Raw output" for the list of skipped tests 5403 to 6117.
Raw output
xarray.tests.test_plot.TestFacetedLinePlots ‑ test_set_axis_labels
xarray.tests.test_plot.TestFacetedLinePlots ‑ test_test_empty_cell
xarray.tests.test_plot.TestFacetedLinePlots ‑ test_unnamed_args
xarray.tests.test_plot.TestFacetedLinePlots ‑ test_wrong_num_of_dimensions
xarray.tests.test_plot.TestFacetedLinePlotsLegend ‑ test_legend_labels
xarray.tests.test_plot.TestImshow ‑ test_1d_raises_valueerror
xarray.tests.test_plot.TestImshow ‑ test_2d_coord_names
xarray.tests.test_plot.TestImshow ‑ test_2d_coord_with_interval
xarray.tests.test_plot.TestImshow ‑ test_2d_function_and_method_signature_same
xarray.tests.test_plot.TestImshow ‑ test_3d_raises_valueerror
xarray.tests.test_plot.TestImshow ‑ test_bad_x_string_exception
xarray.tests.test_plot.TestImshow ‑ test_bool
xarray.tests.test_plot.TestImshow ‑ test_can_change_default_cmap
xarray.tests.test_plot.TestImshow ‑ test_can_pass_in_axis
xarray.tests.test_plot.TestImshow ‑ test_can_plot_all_nans
xarray.tests.test_plot.TestImshow ‑ test_can_plot_axis_size_one
xarray.tests.test_plot.TestImshow ‑ test_cannot_change_mpl_aspect
xarray.tests.test_plot.TestImshow ‑ test_cmap_and_color_both
xarray.tests.test_plot.TestImshow ‑ test_colorbar_default_label
xarray.tests.test_plot.TestImshow ‑ test_colorbar_kwargs
xarray.tests.test_plot.TestImshow ‑ test_colormap_error_norm_and_vmin_vmax
xarray.tests.test_plot.TestImshow ‑ test_complex_raises_typeerror
xarray.tests.test_plot.TestImshow ‑ test_convenient_facetgrid
xarray.tests.test_plot.TestImshow ‑ test_convenient_facetgrid_4d
xarray.tests.test_plot.TestImshow ‑ test_coord_strings
xarray.tests.test_plot.TestImshow ‑ test_dates_are_concise
xarray.tests.test_plot.TestImshow ‑ test_default_aspect_is_auto
xarray.tests.test_plot.TestImshow ‑ test_default_cmap
xarray.tests.test_plot.TestImshow ‑ test_default_title
xarray.tests.test_plot.TestImshow ‑ test_disallows_rgb_arg
xarray.tests.test_plot.TestImshow ‑ test_diverging_color_limits
xarray.tests.test_plot.TestImshow ‑ test_facetgrid_cbar_kwargs
xarray.tests.test_plot.TestImshow ‑ test_facetgrid_cmap
xarray.tests.test_plot.TestImshow ‑ test_facetgrid_map_only_appends_mappables
xarray.tests.test_plot.TestImshow ‑ test_facetgrid_no_cbar_ax
xarray.tests.test_plot.TestImshow ‑ test_imshow_called
xarray.tests.test_plot.TestImshow ‑ test_imshow_rgb_values_in_valid_range
xarray.tests.test_plot.TestImshow ‑ test_label_names
xarray.tests.test_plot.TestImshow ‑ test_multiindex_level_as_coord
xarray.tests.test_plot.TestImshow ‑ test_multiindex_raises_typeerror
xarray.tests.test_plot.TestImshow ‑ test_no_labels
xarray.tests.test_plot.TestImshow ‑ test_non_linked_coords
xarray.tests.test_plot.TestImshow ‑ test_non_linked_coords_transpose
xarray.tests.test_plot.TestImshow ‑ test_nonnumeric_index
xarray.tests.test_plot.TestImshow ‑ test_normalize_rgb_imshow[-1-1-False]
xarray.tests.test_plot.TestImshow ‑ test_normalize_rgb_imshow[-1-None-False]
xarray.tests.test_plot.TestImshow ‑ test_normalize_rgb_imshow[0-0-False]
xarray.tests.test_plot.TestImshow ‑ test_normalize_rgb_imshow[0-None-True]
xarray.tests.test_plot.TestImshow ‑ test_normalize_rgb_imshow[None--1-True]
xarray.tests.test_plot.TestImshow ‑ test_normalize_rgb_imshow[None-2-False]
xarray.tests.test_plot.TestImshow ‑ test_normalize_rgb_one_arg_error
xarray.tests.test_plot.TestImshow ‑ test_origin_overrides_xyincrease
xarray.tests.test_plot.TestImshow ‑ test_plot_nans
xarray.tests.test_plot.TestImshow ‑ test_plot_rgb_faceted
xarray.tests.test_plot.TestImshow ‑ test_plot_rgb_image
xarray.tests.test_plot.TestImshow ‑ test_plot_rgb_image_explicit
xarray.tests.test_plot.TestImshow ‑ test_plot_rgba_image_transposed
xarray.tests.test_plot.TestImshow ‑ test_positional_coord_string
xarray.tests.test_plot.TestImshow ‑ test_primitive_artist_returned
xarray.tests.test_plot.TestImshow ‑ test_regression_rgb_imshow_dim_size_one
xarray.tests.test_plot.TestImshow ‑ test_rgb_errors_bad_dim_sizes
xarray.tests.test_plot.TestImshow ‑ test_rgb_errors_too_many_dims
xarray.tests.test_plot.TestImshow ‑ test_seaborn_palette_as_cmap
xarray.tests.test_plot.TestImshow ‑ test_seaborn_palette_needs_levels
xarray.tests.test_plot.TestImshow ‑ test_verbose_facetgrid
xarray.tests.test_plot.TestImshow ‑ test_viridis_cmap
xarray.tests.test_plot.TestImshow ‑ test_warns_ambigious_dim
xarray.tests.test_plot.TestImshow ‑ test_xy_pixel_centered
xarray.tests.test_plot.TestImshow ‑ test_xy_strings
xarray.tests.test_plot.TestImshow ‑ test_xyincrease_defaults
xarray.tests.test_plot.TestImshow ‑ test_xyincrease_false_changes_axes
xarray.tests.test_plot.TestImshow ‑ test_xyincrease_true_changes_axes
xarray.tests.test_plot.TestNcAxisNotInstalled ‑ test_ncaxis_notinstalled_line_plot
xarray.tests.test_plot.TestPcolormesh ‑ test_1d_raises_valueerror
xarray.tests.test_plot.TestPcolormesh ‑ test_2d_coord_names
xarray.tests.test_plot.TestPcolormesh ‑ test_2d_coord_with_interval
xarray.tests.test_plot.TestPcolormesh ‑ test_2d_function_and_method_signature_same
xarray.tests.test_plot.TestPcolormesh ‑ test_3d_raises_valueerror
xarray.tests.test_plot.TestPcolormesh ‑ test_bad_x_string_exception
xarray.tests.test_plot.TestPcolormesh ‑ test_bool
xarray.tests.test_plot.TestPcolormesh ‑ test_can_change_default_cmap
xarray.tests.test_plot.TestPcolormesh ‑ test_can_pass_in_axis
xarray.tests.test_plot.TestPcolormesh ‑ test_can_plot_all_nans
xarray.tests.test_plot.TestPcolormesh ‑ test_can_plot_axis_size_one
xarray.tests.test_plot.TestPcolormesh ‑ test_cmap_and_color_both
xarray.tests.test_plot.TestPcolormesh ‑ test_colorbar_default_label
xarray.tests.test_plot.TestPcolormesh ‑ test_colorbar_kwargs
xarray.tests.test_plot.TestPcolormesh ‑ test_colormap_error_norm_and_vmin_vmax
xarray.tests.test_plot.TestPcolormesh ‑ test_complex_raises_typeerror
xarray.tests.test_plot.TestPcolormesh ‑ test_convenient_facetgrid
xarray.tests.test_plot.TestPcolormesh ‑ test_convenient_facetgrid_4d
xarray.tests.test_plot.TestPcolormesh ‑ test_coord_strings
xarray.tests.test_plot.TestPcolormesh ‑ test_dates_are_concise
xarray.tests.test_plot.TestPcolormesh ‑ test_default_cmap
xarray.tests.test_plot.TestPcolormesh ‑ test_default_title
xarray.tests.test_plot.TestPcolormesh ‑ test_disallows_rgb_arg
xarray.tests.test_plot.TestPcolormesh ‑ test_diverging_color_limits
xarray.tests.test_plot.TestPcolormesh ‑ test_dont_infer_interval_breaks_for_cartopy
xarray.tests.test_plot.TestPcolormesh ‑ test_everything_plotted
xarray.tests.test_plot.TestPcolormesh ‑ test_facetgrid_cbar_kwargs
xarray.tests.test_plot.TestPcolormesh ‑ test_facetgrid_cmap
xarray.tests.test_plot.TestPcolormesh ‑ test_facetgrid_map_only_appends_mappables
xarray.tests.test_plot.TestPcolormesh ‑ test_facetgrid_no_cbar_ax
xarray.tests.test_plot.TestPcolormesh ‑ test_label_names
xarray.tests.test_plot.TestPcolormesh ‑ test_multiindex_level_as_coord
xarray.tests.test_plot.TestPcolormesh ‑ test_multiindex_raises_typeerror
xarray.tests.test_plot.TestPcolormesh ‑ test_no_labels
xarray.tests.test_plot.TestPcolormesh ‑ test_non_linked_coords
xarray.tests.test_plot.TestPcolormesh ‑ test_non_linked_coords_transpose
xarray.tests.test_plot.TestPcolormesh ‑ test_nonnumeric_index
xarray.tests.test_plot.TestPcolormesh ‑ test_plot_nans
xarray.tests.test_plot.TestPcolormesh ‑ test_positional_coord_string
xarray.tests.test_plot.TestPcolormesh ‑ test_primitive_artist_returned
xarray.tests.test_plot.TestPcolormesh ‑ test_seaborn_palette_as_cmap
xarray.tests.test_plot.TestPcolormesh ‑ test_verbose_facetgrid
xarray.tests.test_plot.TestPcolormesh ‑ test_viridis_cmap
xarray.tests.test_plot.TestPcolormesh ‑ test_xy_strings
xarray.tests.test_plot.TestPcolormesh ‑ test_xyincrease_defaults
xarray.tests.test_plot.TestPcolormesh ‑ test_xyincrease_false_changes_axes
xarray.tests.test_plot.TestPcolormesh ‑ test_xyincrease_true_changes_axes
xarray.tests.test_plot.TestPcolormeshLogscale ‑ test_interval_breaks_logspace
xarray.tests.test_plot.TestPlot ‑ test1d
xarray.tests.test_plot.TestPlot ‑ test2d_1d_2d_coordinates_contourf
xarray.tests.test_plot.TestPlot ‑ test2d_1d_2d_coordinates_pcolormesh
xarray.tests.test_plot.TestPlot ‑ test2d_nonuniform_calls_contourf
xarray.tests.test_plot.TestPlot ‑ test2d_uniform_calls_imshow
xarray.tests.test_plot.TestPlot ‑ test3d
xarray.tests.test_plot.TestPlot ‑ test_1d_bool
xarray.tests.test_plot.TestPlot ‑ test_1d_x_y_kw
xarray.tests.test_plot.TestPlot ‑ test_2d_before_squeeze
xarray.tests.test_plot.TestPlot ‑ test_2d_coord_line_plot_coords_transpose_invariant
xarray.tests.test_plot.TestPlot ‑ test_2d_coords_line_plot
xarray.tests.test_plot.TestPlot ‑ test_2d_line
xarray.tests.test_plot.TestPlot ‑ test_2d_line_accepts_hue_kw
xarray.tests.test_plot.TestPlot ‑ test_2d_line_accepts_legend_kw
xarray.tests.test_plot.TestPlot ‑ test_2d_line_accepts_x_kw
xarray.tests.test_plot.TestPlot ‑ test__infer_interval_breaks
xarray.tests.test_plot.TestPlot ‑ test__infer_interval_breaks_logscale
xarray.tests.test_plot.TestPlot ‑ test__infer_interval_breaks_logscale_invalid_coords
xarray.tests.test_plot.TestPlot ‑ test_accessor
xarray.tests.test_plot.TestPlot ‑ test_can_pass_in_axis
xarray.tests.test_plot.TestPlot ‑ test_contourf_cmap_set
xarray.tests.test_plot.TestPlot ‑ test_contourf_cmap_set_with_bad_under_over
xarray.tests.test_plot.TestPlot ‑ test_convenient_facetgrid
xarray.tests.test_plot.TestPlot ‑ test_convenient_facetgrid_4d
xarray.tests.test_plot.TestPlot ‑ test_coord_with_interval
xarray.tests.test_plot.TestPlot ‑ test_coord_with_interval_x
xarray.tests.test_plot.TestPlot ‑ test_coord_with_interval_xy
xarray.tests.test_plot.TestPlot ‑ test_coord_with_interval_y
xarray.tests.test_plot.TestPlot ‑ test_datetime_dimension
xarray.tests.test_plot.TestPlot ‑ test_geo_data
xarray.tests.test_plot.TestPlot ‑ test_infer_line_data
xarray.tests.test_plot.TestPlot ‑ test_label_from_attrs
xarray.tests.test_plot.TestPlot ‑ test_labels_with_units_with_interval[x]
xarray.tests.test_plot.TestPlot ‑ test_labels_with_units_with_interval[y]
xarray.tests.test_plot.TestPlot ‑ test_line_plot_along_1d_coord
xarray.tests.test_plot.TestPlot ‑ test_line_plot_wrong_hue
xarray.tests.test_plot.TestPlot ‑ test_multiindex_level_as_coord
xarray.tests.test_plot.TestPlot ‑ test_multiplot_over_length_one_dim
xarray.tests.test_plot.TestPlot ‑ test_plot_size
xarray.tests.test_plot.TestPlot ‑ test_str_coordinates_pcolormesh
xarray.tests.test_plot.TestPlot ‑ test_subplot_kws
xarray.tests.test_plot.TestPlot1D ‑ test_can_pass_in_axis
xarray.tests.test_plot.TestPlot1D ‑ test_dates_are_concise
xarray.tests.test_plot.TestPlot1D ‑ test_format_string
xarray.tests.test_plot.TestPlot1D ‑ test_no_label_name_on_x_axis
xarray.tests.test_plot.TestPlot1D ‑ test_no_label_name_on_y_axis
xarray.tests.test_plot.TestPlot1D ‑ test_nonnumeric_index
xarray.tests.test_plot.TestPlot1D ‑ test_plot_nans
xarray.tests.test_plot.TestPlot1D ‑ test_primitive_returned
xarray.tests.test_plot.TestPlot1D ‑ test_slice_in_title
xarray.tests.test_plot.TestPlot1D ‑ test_slice_in_title_single_item_array
xarray.tests.test_plot.TestPlot1D ‑ test_xlabel_is_data_name
xarray.tests.test_plot.TestPlot1D ‑ test_xlabel_is_index_name
xarray.tests.test_plot.TestPlot1D ‑ test_xyincrease_false_changes_axes
xarray.tests.test_plot.TestPlot1D ‑ test_ylabel_is_data_name
xarray.tests.test_plot.TestPlotHistogram ‑ test_3d_array
xarray.tests.test_plot.TestPlotHistogram ‑ test_can_pass_in_axis
xarray.tests.test_plot.TestPlotHistogram ‑ test_can_pass_in_kwargs
xarray.tests.test_plot.TestPlotHistogram ‑ test_hist_coord_with_interval
xarray.tests.test_plot.TestPlotHistogram ‑ test_plot_nans
xarray.tests.test_plot.TestPlotHistogram ‑ test_primitive_returned
xarray.tests.test_plot.TestPlotHistogram ‑ test_title_is_histogram
xarray.tests.test_plot.TestPlotHistogram ‑ test_xlabel_uses_name
xarray.tests.test_plot.TestPlotStep ‑ test_coord_with_interval_step
xarray.tests.test_plot.TestPlotStep ‑ test_coord_with_interval_step_x
xarray.tests.test_plot.TestPlotStep ‑ test_coord_with_interval_step_x_and_y_raises_valueeerror
xarray.tests.test_plot.TestPlotStep ‑ test_coord_with_interval_step_y
xarray.tests.test_plot.TestPlotStep ‑ test_drawstyle_steps
xarray.tests.test_plot.TestPlotStep ‑ test_drawstyle_steps_with_where[mid]
xarray.tests.test_plot.TestPlotStep ‑ test_drawstyle_steps_with_where[post]
xarray.tests.test_plot.TestPlotStep ‑ test_drawstyle_steps_with_where[pre]
xarray.tests.test_plot.TestPlotStep ‑ test_step
xarray.tests.test_plot.TestPlotStep ‑ test_step_with_hue
xarray.tests.test_plot.TestPlotStep ‑ test_step_with_hue_and_where[mid]
xarray.tests.test_plot.TestPlotStep ‑ test_step_with_hue_and_where[post]
xarray.tests.test_plot.TestPlotStep ‑ test_step_with_hue_and_where[pre]
xarray.tests.test_plot.TestPlotStep ‑ test_step_with_where[mid]
xarray.tests.test_plot.TestPlotStep ‑ test_step_with_where[post]
xarray.tests.test_plot.TestPlotStep ‑ test_step_with_where[pre]
xarray.tests.test_plot.TestSurface ‑ test_1d_raises_valueerror
xarray.tests.test_plot.TestSurface ‑ test_2d_coord_names
xarray.tests.test_plot.TestSurface ‑ test_2d_coord_with_interval
xarray.tests.test_plot.TestSurface ‑ test_2d_function_and_method_signature_same
xarray.tests.test_plot.TestSurface ‑ test_3d_raises_valueerror
xarray.tests.test_plot.TestSurface ‑ test_bad_x_string_exception
xarray.tests.test_plot.TestSurface ‑ test_bool
xarray.tests.test_plot.TestSurface ‑ test_can_change_default_cmap
xarray.tests.test_plot.TestSurface ‑ test_can_pass_in_axis
xarray.tests.test_plot.TestSurface ‑ test_can_plot_all_nans
xarray.tests.test_plot.TestSurface ‑ test_can_plot_axis_size_one
xarray.tests.test_plot.TestSurface ‑ test_cmap_and_color_both
xarray.tests.test_plot.TestSurface ‑ test_colorbar_default_label
xarray.tests.test_plot.TestSurface ‑ test_colorbar_kwargs
xarray.tests.test_plot.TestSurface ‑ test_colormap_error_norm_and_vmin_vmax
xarray.tests.test_plot.TestSurface ‑ test_complex_raises_typeerror
xarray.tests.test_plot.TestSurface ‑ test_convenient_facetgrid
xarray.tests.test_plot.TestSurface ‑ test_convenient_facetgrid_4d
xarray.tests.test_plot.TestSurface ‑ test_coord_strings
xarray.tests.test_plot.TestSurface ‑ test_dates_are_concise
xarray.tests.test_plot.TestSurface ‑ test_default_cmap
xarray.tests.test_plot.TestSurface ‑ test_default_title
xarray.tests.test_plot.TestSurface ‑ test_disallows_rgb_arg
xarray.tests.test_plot.TestSurface ‑ test_diverging_color_limits
xarray.tests.test_plot.TestSurface ‑ test_facetgrid_cbar_kwargs
xarray.tests.test_plot.TestSurface ‑ test_facetgrid_cmap
xarray.tests.test_plot.TestSurface ‑ test_facetgrid_map_only_appends_mappables
xarray.tests.test_plot.TestSurface ‑ test_facetgrid_no_cbar_ax
xarray.tests.test_plot.TestSurface ‑ test_label_names
xarray.tests.test_plot.TestSurface ‑ test_multiindex_level_as_coord
xarray.tests.test_plot.TestSurface ‑ test_multiindex_raises_typeerror
xarray.tests.test_plot.TestSurface ‑ test_no_labels
xarray.tests.test_plot.TestSurface ‑ test_non_linked_coords
xarray.tests.test_plot.TestSurface ‑ test_non_linked_coords_transpose
xarray.tests.test_plot.TestSurface ‑ test_nonnumeric_index
xarray.tests.test_plot.TestSurface ‑ test_plot_nans
xarray.tests.test_plot.TestSurface ‑ test_positional_coord_string
xarray.tests.test_plot.TestSurface ‑ test_primitive_artist_returned
xarray.tests.test_plot.TestSurface ‑ test_seaborn_palette_as_cmap
xarray.tests.test_plot.TestSurface ‑ test_verbose_facetgrid
xarray.tests.test_plot.TestSurface ‑ test_viridis_cmap
xarray.tests.test_plot.TestSurface ‑ test_xy_strings
xarray.tests.test_plot.TestSurface ‑ test_xyincrease_defaults
xarray.tests.test_plot.TestSurface ‑ test_xyincrease_false_changes_axes
xarray.tests.test_plot.TestSurface ‑ test_xyincrease_true_changes_axes
xarray.tests.test_rolling ‑ test_cumulative[1-dask-DataArray-1-mean]
xarray.tests.test_rolling ‑ test_cumulative[1-dask-DataArray-1-sum]
xarray.tests.test_rolling ‑ test_cumulative[1-dask-DataArray-10-mean]
xarray.tests.test_rolling ‑ test_cumulative[1-dask-DataArray-10-sum]
xarray.tests.test_rolling ‑ test_cumulative[1-dask-Dataset-1-mean]
xarray.tests.test_rolling ‑ test_cumulative[1-dask-Dataset-1-sum]
xarray.tests.test_rolling ‑ test_cumulative[1-dask-Dataset-10-mean]
xarray.tests.test_rolling ‑ test_cumulative[1-dask-Dataset-10-sum]
xarray.tests.test_rolling ‑ test_cumulative_vs_cum[1-dask-DataArray]
xarray.tests.test_rolling ‑ test_cumulative_vs_cum[1-dask-Dataset]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[bottleneck-dask-max-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[bottleneck-dask-max-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[bottleneck-dask-max-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[bottleneck-dask-max-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[bottleneck-dask-mean-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[bottleneck-dask-mean-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[bottleneck-dask-mean-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[bottleneck-dask-mean-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[bottleneck-dask-sum-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[bottleneck-dask-sum-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[bottleneck-dask-sum-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[bottleneck-dask-sum-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numbagg-dask-max-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numbagg-dask-max-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numbagg-dask-max-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numbagg-dask-max-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numbagg-dask-mean-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numbagg-dask-mean-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numbagg-dask-mean-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numbagg-dask-mean-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numbagg-dask-sum-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numbagg-dask-sum-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numbagg-dask-sum-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numbagg-dask-sum-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_repeated_rolling_rechunks
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_dask_dtype[float32]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_dask_dtype[float64]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_dask_dtype[int]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_doc[1-dask]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[dask-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[dask-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[dask-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[dask-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[dask-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[dask-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[dask-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[dask-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[dask-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[dask-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[dask-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[dask-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[dask-7-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[dask-7-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[dask-7-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[dask-7-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_properties[1-dask]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-1-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-1-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-1-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-1-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-1-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-1-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-1-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-1-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-1-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-1-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-1-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-1-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-1-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-1-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-1-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-1-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-2-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-2-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-2-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-2-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-2-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-2-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-2-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-2-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-2-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-2-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-2-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-2-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-2-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-2-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-2-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-2-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-3-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-3-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-3-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-3-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-3-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-3-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-3-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-3-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-3-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-3-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-3-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-3-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-3-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-3-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-3-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-3-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-4-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-4-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-4-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-4-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-4-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-4-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-4-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-4-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-4-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-4-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-4-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-4-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-4-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-4-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-4-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-max-4-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-1-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-1-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-1-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-1-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-1-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-1-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-1-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-1-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-1-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-1-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-1-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-1-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-1-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-1-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-1-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-1-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-2-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-2-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-2-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-2-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-2-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-2-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-2-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-2-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-2-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-2-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-2-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-2-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-2-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-2-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-2-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-2-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-3-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-3-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-3-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-3-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-3-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-3-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-3-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-3-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-3-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-3-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-3-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-3-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-3-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-3-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-3-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-3-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-4-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-4-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-4-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-4-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-4-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-4-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-4-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-4-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-4-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-4-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-4-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-4-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-4-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-4-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-4-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-mean-4-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-1-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-1-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-1-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-1-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-1-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-1-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-1-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-1-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-1-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-1-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-1-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-1-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-1-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-1-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-1-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-1-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-2-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-2-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-2-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-2-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-2-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-2-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-2-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-2-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-2-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-2-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-2-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-2-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-2-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-2-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-2-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-2-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-3-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-3-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-3-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-3-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-3-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-3-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-3-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-3-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-3-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-3-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-3-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-3-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-3-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-3-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-3-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-3-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-4-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-4-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-4-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-4-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-4-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-4-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-4-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-4-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-4-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-4-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-4-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-4-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-4-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-4-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-4-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-std-4-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-1-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-1-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-1-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-1-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-1-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-1-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-1-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-1-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-1-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-1-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-1-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-1-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-1-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-1-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-1-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-1-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-2-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-2-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-2-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-2-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-2-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-2-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-2-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-2-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-2-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-2-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-2-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-2-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-2-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-2-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-2-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-2-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-3-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-3-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-3-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-3-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-3-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-3-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-3-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-3-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-3-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-3-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-3-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-3-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-3-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-3-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-3-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-3-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-4-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-4-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-4-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-4-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-4-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-4-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-4-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-4-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-4-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-4-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-4-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-4-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-4-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-4-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-4-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[bottleneck-dask-sum-4-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-1-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-1-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-1-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-1-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-1-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-1-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-1-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-1-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-1-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-1-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-1-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-1-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-1-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-1-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-1-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-1-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-2-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-2-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-2-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-2-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-2-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-2-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-2-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-2-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-2-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-2-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-2-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-2-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-2-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-2-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-2-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-2-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-3-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-3-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-3-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-3-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-3-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-3-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-3-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-3-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-3-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-3-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-3-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-3-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-3-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-3-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-3-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-3-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-4-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-4-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-4-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-4-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-4-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-4-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-4-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-4-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-4-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-4-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-4-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-4-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-4-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-4-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-4-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-max-4-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-1-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-1-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-1-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-1-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-1-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-1-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-1-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-1-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-1-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-1-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-1-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-1-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-1-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-1-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-1-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-1-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-2-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-2-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-2-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-2-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-2-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-2-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-2-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-2-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-2-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-2-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-2-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-2-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-2-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-2-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-2-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-2-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-3-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-3-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-3-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-3-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-3-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-3-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-3-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-3-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-3-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-3-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-3-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-3-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-3-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-3-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-3-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-3-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-4-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-4-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-4-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-4-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-4-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-4-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-4-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-4-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-4-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-4-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-4-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-4-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-4-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-4-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-4-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-mean-4-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-1-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-1-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-1-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-1-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-1-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-1-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-1-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-1-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-1-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-1-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-1-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-1-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-1-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-1-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-1-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-1-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-2-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-2-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-2-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-2-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-2-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-2-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-2-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-2-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-2-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-2-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-2-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-2-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-2-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numbagg-dask-std-2-None-False-2]