Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Use numpy.can_cast instead of casting and checking #7834

Closed
wants to merge 3 commits into from

Add note to whats-new.rst

452156f
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Closed

Use numpy.can_cast instead of casting and checking #7834

Add note to whats-new.rst
452156f
Select commit
Loading
Failed to load commit list.
GitHub Actions / Test Results failed May 11, 2023 in 0s

6 fail, 2 113 skipped, 15 923 pass in 1h 48m 11s

           9 files  +           8             9 suites  +8   1h 48m 11s ⏱️ + 1h 46m 36s
  18 042 tests +    7 064    15 923 ✔️ +  11 392    2 113 💤  - 4 328    6 ±  0 
151 514 runs  +140 536  135 691 ✔️ +131 160  15 769 💤 +9 328  54 +48 

Results for commit 452156f. ± Comparison against earlier commit 915a215.

Annotations

Check warning on line 0 in xarray.tests.test_coding_times

See this annotation in the file changed.

@github-actions github-actions / Test Results

All 9 runs failed: test_cf_timedelta[1D-days-numbers0] (xarray.tests.test_coding_times)

artifacts/Test results for Linux-3.10/pytest.xml [took 0s]
artifacts/Test results for Linux-3.11/pytest.xml [took 0s]
artifacts/Test results for Linux-3.9/pytest.xml [took 0s]
artifacts/Test results for Windows-3.10/pytest.xml [took 0s]
artifacts/Test results for Windows-3.11/pytest.xml [took 0s]
artifacts/Test results for Windows-3.9/pytest.xml [took 0s]
artifacts/Test results for macOS-3.10/pytest.xml [took 0s]
artifacts/Test results for macOS-3.11/pytest.xml [took 0s]
artifacts/Test results for macOS-3.9/pytest.xml [took 0s]
Raw output
AssertionError: assert dtype('int64') == dtype('float64')
 +  where dtype('int64') = array(1).dtype
 +  and   dtype('float64') = array(1.).dtype
timedeltas = numpy.timedelta64(86400000000000,'ns'), units = 'days'
numbers = array(1)

    @pytest.mark.parametrize(
        ["timedeltas", "units", "numbers"],
        [
            ("1D", "days", np.int64(1)),
            (["1D", "2D", "3D"], "days", np.array([1, 2, 3], "int64")),
            ("1h", "hours", np.int64(1)),
            ("1ms", "milliseconds", np.int64(1)),
            ("1us", "microseconds", np.int64(1)),
            ("1ns", "nanoseconds", np.int64(1)),
            (["NaT", "0s", "1s"], None, [np.nan, 0, 1]),
            (["30m", "60m"], "hours", [0.5, 1.0]),
            ("NaT", "days", np.nan),
            (["NaT", "NaT"], "days", [np.nan, np.nan]),
        ],
    )
    def test_cf_timedelta(timedeltas, units, numbers) -> None:
        if timedeltas == "NaT":
            timedeltas = np.timedelta64("NaT", "ns")
        else:
            timedeltas = to_timedelta_unboxed(timedeltas)
        numbers = np.array(numbers)
    
        expected = numbers
        actual, _ = coding.times.encode_cf_timedelta(timedeltas, units)
        assert_array_equal(expected, actual)
>       assert expected.dtype == actual.dtype
E       AssertionError: assert dtype('int64') == dtype('float64')
E        +  where dtype('int64') = array(1).dtype
E        +  and   dtype('float64') = array(1.).dtype

/Users/runner/work/xarray/xarray/xarray/tests/test_coding_times.py:595: AssertionError

Check warning on line 0 in xarray.tests.test_coding_times

See this annotation in the file changed.

@github-actions github-actions / Test Results

All 9 runs failed: test_cf_timedelta[timedeltas1-days-numbers1] (xarray.tests.test_coding_times)

artifacts/Test results for Linux-3.10/pytest.xml [took 0s]
artifacts/Test results for Linux-3.11/pytest.xml [took 0s]
artifacts/Test results for Linux-3.9/pytest.xml [took 0s]
artifacts/Test results for Windows-3.10/pytest.xml [took 0s]
artifacts/Test results for Windows-3.11/pytest.xml [took 0s]
artifacts/Test results for Windows-3.9/pytest.xml [took 0s]
artifacts/Test results for macOS-3.10/pytest.xml [took 0s]
artifacts/Test results for macOS-3.11/pytest.xml [took 0s]
artifacts/Test results for macOS-3.9/pytest.xml [took 0s]
Raw output
AssertionError: assert dtype('int64') == dtype('float64')
 +  where dtype('int64') = array([1, 2, 3]).dtype
 +  and   dtype('float64') = array([1., 2., 3.]).dtype
timedeltas = array([ 86400000000000, 172800000000000, 259200000000000],
      dtype='timedelta64[ns]')
units = 'days', numbers = array([1, 2, 3])

    @pytest.mark.parametrize(
        ["timedeltas", "units", "numbers"],
        [
            ("1D", "days", np.int64(1)),
            (["1D", "2D", "3D"], "days", np.array([1, 2, 3], "int64")),
            ("1h", "hours", np.int64(1)),
            ("1ms", "milliseconds", np.int64(1)),
            ("1us", "microseconds", np.int64(1)),
            ("1ns", "nanoseconds", np.int64(1)),
            (["NaT", "0s", "1s"], None, [np.nan, 0, 1]),
            (["30m", "60m"], "hours", [0.5, 1.0]),
            ("NaT", "days", np.nan),
            (["NaT", "NaT"], "days", [np.nan, np.nan]),
        ],
    )
    def test_cf_timedelta(timedeltas, units, numbers) -> None:
        if timedeltas == "NaT":
            timedeltas = np.timedelta64("NaT", "ns")
        else:
            timedeltas = to_timedelta_unboxed(timedeltas)
        numbers = np.array(numbers)
    
        expected = numbers
        actual, _ = coding.times.encode_cf_timedelta(timedeltas, units)
        assert_array_equal(expected, actual)
>       assert expected.dtype == actual.dtype
E       AssertionError: assert dtype('int64') == dtype('float64')
E        +  where dtype('int64') = array([1, 2, 3]).dtype
E        +  and   dtype('float64') = array([1., 2., 3.]).dtype

/Users/runner/work/xarray/xarray/xarray/tests/test_coding_times.py:595: AssertionError

Check warning on line 0 in xarray.tests.test_coding_times

See this annotation in the file changed.

@github-actions github-actions / Test Results

All 9 runs failed: test_cf_timedelta[1h-hours-numbers2] (xarray.tests.test_coding_times)

artifacts/Test results for Linux-3.10/pytest.xml [took 0s]
artifacts/Test results for Linux-3.11/pytest.xml [took 0s]
artifacts/Test results for Linux-3.9/pytest.xml [took 0s]
artifacts/Test results for Windows-3.10/pytest.xml [took 0s]
artifacts/Test results for Windows-3.11/pytest.xml [took 0s]
artifacts/Test results for Windows-3.9/pytest.xml [took 0s]
artifacts/Test results for macOS-3.10/pytest.xml [took 0s]
artifacts/Test results for macOS-3.11/pytest.xml [took 0s]
artifacts/Test results for macOS-3.9/pytest.xml [took 0s]
Raw output
AssertionError: assert dtype('int64') == dtype('float64')
 +  where dtype('int64') = array(1).dtype
 +  and   dtype('float64') = array(1.).dtype
timedeltas = numpy.timedelta64(3600000000000,'ns'), units = 'hours'
numbers = array(1)

    @pytest.mark.parametrize(
        ["timedeltas", "units", "numbers"],
        [
            ("1D", "days", np.int64(1)),
            (["1D", "2D", "3D"], "days", np.array([1, 2, 3], "int64")),
            ("1h", "hours", np.int64(1)),
            ("1ms", "milliseconds", np.int64(1)),
            ("1us", "microseconds", np.int64(1)),
            ("1ns", "nanoseconds", np.int64(1)),
            (["NaT", "0s", "1s"], None, [np.nan, 0, 1]),
            (["30m", "60m"], "hours", [0.5, 1.0]),
            ("NaT", "days", np.nan),
            (["NaT", "NaT"], "days", [np.nan, np.nan]),
        ],
    )
    def test_cf_timedelta(timedeltas, units, numbers) -> None:
        if timedeltas == "NaT":
            timedeltas = np.timedelta64("NaT", "ns")
        else:
            timedeltas = to_timedelta_unboxed(timedeltas)
        numbers = np.array(numbers)
    
        expected = numbers
        actual, _ = coding.times.encode_cf_timedelta(timedeltas, units)
        assert_array_equal(expected, actual)
>       assert expected.dtype == actual.dtype
E       AssertionError: assert dtype('int64') == dtype('float64')
E        +  where dtype('int64') = array(1).dtype
E        +  and   dtype('float64') = array(1.).dtype

/Users/runner/work/xarray/xarray/xarray/tests/test_coding_times.py:595: AssertionError

Check warning on line 0 in xarray.tests.test_coding_times

See this annotation in the file changed.

@github-actions github-actions / Test Results

All 9 runs failed: test_cf_timedelta[1ms-milliseconds-numbers3] (xarray.tests.test_coding_times)

artifacts/Test results for Linux-3.10/pytest.xml [took 0s]
artifacts/Test results for Linux-3.11/pytest.xml [took 0s]
artifacts/Test results for Linux-3.9/pytest.xml [took 0s]
artifacts/Test results for Windows-3.10/pytest.xml [took 0s]
artifacts/Test results for Windows-3.11/pytest.xml [took 0s]
artifacts/Test results for Windows-3.9/pytest.xml [took 0s]
artifacts/Test results for macOS-3.10/pytest.xml [took 0s]
artifacts/Test results for macOS-3.11/pytest.xml [took 0s]
artifacts/Test results for macOS-3.9/pytest.xml [took 0s]
Raw output
AssertionError: assert dtype('int64') == dtype('float64')
 +  where dtype('int64') = array(1).dtype
 +  and   dtype('float64') = array(1.).dtype
timedeltas = numpy.timedelta64(1000000,'ns'), units = 'milliseconds'
numbers = array(1)

    @pytest.mark.parametrize(
        ["timedeltas", "units", "numbers"],
        [
            ("1D", "days", np.int64(1)),
            (["1D", "2D", "3D"], "days", np.array([1, 2, 3], "int64")),
            ("1h", "hours", np.int64(1)),
            ("1ms", "milliseconds", np.int64(1)),
            ("1us", "microseconds", np.int64(1)),
            ("1ns", "nanoseconds", np.int64(1)),
            (["NaT", "0s", "1s"], None, [np.nan, 0, 1]),
            (["30m", "60m"], "hours", [0.5, 1.0]),
            ("NaT", "days", np.nan),
            (["NaT", "NaT"], "days", [np.nan, np.nan]),
        ],
    )
    def test_cf_timedelta(timedeltas, units, numbers) -> None:
        if timedeltas == "NaT":
            timedeltas = np.timedelta64("NaT", "ns")
        else:
            timedeltas = to_timedelta_unboxed(timedeltas)
        numbers = np.array(numbers)
    
        expected = numbers
        actual, _ = coding.times.encode_cf_timedelta(timedeltas, units)
        assert_array_equal(expected, actual)
>       assert expected.dtype == actual.dtype
E       AssertionError: assert dtype('int64') == dtype('float64')
E        +  where dtype('int64') = array(1).dtype
E        +  and   dtype('float64') = array(1.).dtype

/Users/runner/work/xarray/xarray/xarray/tests/test_coding_times.py:595: AssertionError

Check warning on line 0 in xarray.tests.test_coding_times

See this annotation in the file changed.

@github-actions github-actions / Test Results

All 9 runs failed: test_cf_timedelta[1us-microseconds-numbers4] (xarray.tests.test_coding_times)

artifacts/Test results for Linux-3.10/pytest.xml [took 0s]
artifacts/Test results for Linux-3.11/pytest.xml [took 0s]
artifacts/Test results for Linux-3.9/pytest.xml [took 0s]
artifacts/Test results for Windows-3.10/pytest.xml [took 0s]
artifacts/Test results for Windows-3.11/pytest.xml [took 0s]
artifacts/Test results for Windows-3.9/pytest.xml [took 0s]
artifacts/Test results for macOS-3.10/pytest.xml [took 0s]
artifacts/Test results for macOS-3.11/pytest.xml [took 0s]
artifacts/Test results for macOS-3.9/pytest.xml [took 0s]
Raw output
AssertionError: assert dtype('int64') == dtype('float64')
 +  where dtype('int64') = array(1).dtype
 +  and   dtype('float64') = array(1.).dtype
timedeltas = numpy.timedelta64(1000,'ns'), units = 'microseconds'
numbers = array(1)

    @pytest.mark.parametrize(
        ["timedeltas", "units", "numbers"],
        [
            ("1D", "days", np.int64(1)),
            (["1D", "2D", "3D"], "days", np.array([1, 2, 3], "int64")),
            ("1h", "hours", np.int64(1)),
            ("1ms", "milliseconds", np.int64(1)),
            ("1us", "microseconds", np.int64(1)),
            ("1ns", "nanoseconds", np.int64(1)),
            (["NaT", "0s", "1s"], None, [np.nan, 0, 1]),
            (["30m", "60m"], "hours", [0.5, 1.0]),
            ("NaT", "days", np.nan),
            (["NaT", "NaT"], "days", [np.nan, np.nan]),
        ],
    )
    def test_cf_timedelta(timedeltas, units, numbers) -> None:
        if timedeltas == "NaT":
            timedeltas = np.timedelta64("NaT", "ns")
        else:
            timedeltas = to_timedelta_unboxed(timedeltas)
        numbers = np.array(numbers)
    
        expected = numbers
        actual, _ = coding.times.encode_cf_timedelta(timedeltas, units)
        assert_array_equal(expected, actual)
>       assert expected.dtype == actual.dtype
E       AssertionError: assert dtype('int64') == dtype('float64')
E        +  where dtype('int64') = array(1).dtype
E        +  and   dtype('float64') = array(1.).dtype

/Users/runner/work/xarray/xarray/xarray/tests/test_coding_times.py:595: AssertionError

Check warning on line 0 in xarray.tests.test_coding_times

See this annotation in the file changed.

@github-actions github-actions / Test Results

All 9 runs failed: test_cf_timedelta[1ns-nanoseconds-numbers5] (xarray.tests.test_coding_times)

artifacts/Test results for Linux-3.10/pytest.xml [took 0s]
artifacts/Test results for Linux-3.11/pytest.xml [took 0s]
artifacts/Test results for Linux-3.9/pytest.xml [took 0s]
artifacts/Test results for Windows-3.10/pytest.xml [took 0s]
artifacts/Test results for Windows-3.11/pytest.xml [took 0s]
artifacts/Test results for Windows-3.9/pytest.xml [took 0s]
artifacts/Test results for macOS-3.10/pytest.xml [took 0s]
artifacts/Test results for macOS-3.11/pytest.xml [took 0s]
artifacts/Test results for macOS-3.9/pytest.xml [took 0s]
Raw output
AssertionError: assert dtype('int64') == dtype('float64')
 +  where dtype('int64') = array(1).dtype
 +  and   dtype('float64') = array(1.).dtype
timedeltas = numpy.timedelta64(1,'ns'), units = 'nanoseconds'
numbers = array(1)

    @pytest.mark.parametrize(
        ["timedeltas", "units", "numbers"],
        [
            ("1D", "days", np.int64(1)),
            (["1D", "2D", "3D"], "days", np.array([1, 2, 3], "int64")),
            ("1h", "hours", np.int64(1)),
            ("1ms", "milliseconds", np.int64(1)),
            ("1us", "microseconds", np.int64(1)),
            ("1ns", "nanoseconds", np.int64(1)),
            (["NaT", "0s", "1s"], None, [np.nan, 0, 1]),
            (["30m", "60m"], "hours", [0.5, 1.0]),
            ("NaT", "days", np.nan),
            (["NaT", "NaT"], "days", [np.nan, np.nan]),
        ],
    )
    def test_cf_timedelta(timedeltas, units, numbers) -> None:
        if timedeltas == "NaT":
            timedeltas = np.timedelta64("NaT", "ns")
        else:
            timedeltas = to_timedelta_unboxed(timedeltas)
        numbers = np.array(numbers)
    
        expected = numbers
        actual, _ = coding.times.encode_cf_timedelta(timedeltas, units)
        assert_array_equal(expected, actual)
>       assert expected.dtype == actual.dtype
E       AssertionError: assert dtype('int64') == dtype('float64')
E        +  where dtype('int64') = array(1).dtype
E        +  and   dtype('float64') = array(1.).dtype

/Users/runner/work/xarray/xarray/xarray/tests/test_coding_times.py:595: AssertionError

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

2113 skipped tests found (test 1 to 729)

There are 2113 skipped tests, see "Raw output" for the list of skipped tests 1 to 729.
Raw output
properties.test_pandas_roundtrip ‑ test_roundtrip_pandas_dataframe
xarray.tests.test_array_api
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.TestGenericNetCDFData ‑ 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_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
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.TestH5NetCDFViaDaskData ‑ 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_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
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.TestNetCDF4Data ‑ test_refresh_from_disk
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.TestNetCDF4ViaDaskData ‑ test_refresh_from_disk
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.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_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.TestScipyFileObject ‑ test_pickle
xarray.tests.test_backends.TestScipyFileObject ‑ test_pickle_dataarray
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.TestScipyFilePath ‑ 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_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
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.TestZarrDirectoryStore ‑ test_roundtrip_mask_and_scale[create_bad_unsigned_masked_scaled_data-create_bad_encoded_unsigned_masked_scaled_data]
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_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_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_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]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-True-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-False-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[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_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_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_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]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-True-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-False-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[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_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_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_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]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-False-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-False-True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-True-False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-True-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-True-True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-False-False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-False-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-False-True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-True-False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-True-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[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_coarsen ‑ test_coarsen_da_reduce[dask-max-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-mean-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-std-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[dask-sum-1-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_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-H-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-L-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-N-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-N-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-N-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-N-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-N-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-N-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-N-seconds]
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-T-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-U-nanoseconds]
xarray.tests.test_combine.TestNestedCombine ‑ test_nested_concat_too_many_dims_at_once
xarray.tests.test_conventions.TestCFEncodedDataStore ‑ test_roundtrip_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_cupy
xarray.tests.test_dask.TestToDaskDataFrame ‑ test_to_dask_dataframe_2D_set_index
xarray.tests.test_dataarray.TestDataArray ‑ test_astype_subok
xarray.tests.test_dataarray.TestDataArray ‑ test_copy_coords[True-expected_orig0]
xarray.tests.test_dataarray.TestNumpyCoercion ‑ test_from_cupy
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmax[True-datetime]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmin[True-datetime]
xarray.tests.test_dataarray.TestReduce2D ‑ test_idxmax[dask-datetime]
xarray.tests.test_dataarray.TestReduce2D ‑ test_idxmin[dask-datetime]
xarray.tests.test_dataset.TestDataset ‑ test_copy_coords[True-expected_orig0]
xarray.tests.test_dataset.TestNumpyCoercion ‑ test_from_cupy
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-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-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-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-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-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[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-float-1]
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-int-1]
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-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-float-1]
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-int-1]
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-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-float-1]
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-int-1]
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-True-bool_-1]
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-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-float-1]
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-int-1]
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-True-bool_-1]
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_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-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-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-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-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-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[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-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-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-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-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-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_interp ‑ test_datetime[2000-01-01T12:00-0.5]
xarray.tests.test_missing ‑ test_interpolate_na_2d[None]
xarray.tests.test_plot.TestImshow ‑ test_3d_raises_valueerror
xarray.tests.test_plot.TestNcAxisNotInstalled ‑ test_ncaxis_notinstalled_line_plot
xarray.tests.test_plot.TestSurface ‑ test_cmap_and_color_both
xarray.tests.test_plot.TestSurface ‑ test_colorbar_kwargs
xarray.tests.test_plot.TestSurface ‑ test_default_cmap
xarray.tests.test_plot.TestSurface ‑ test_diverging_color_limits
xarray.tests.test_plot.TestSurface ‑ test_xyincrease_false_changes_axes
xarray.tests.test_plot.TestSurface ‑ test_xyincrease_true_changes_axes
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[dask-std-1-1-False-1]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[dask-std-1-1-False-2]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[dask-std-1-1-True-1]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[dask-std-1-1-True-2]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[dask-std-1-2-False-1]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[dask-std-1-2-False-2]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[dask-std-1-2-True-1]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[dask-std-1-2-True-2]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[dask-std-1-3-False-1]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[dask-std-1-3-False-2]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[dask-std-1-3-True-1]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[dask-std-1-3-True-2]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[dask-std-1-None-False-1]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[dask-std-1-None-False-2]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[dask-std-1-None-True-1]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[dask-std-1-None-True-2]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[numpy-std-1-1-False-1]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[numpy-std-1-1-False-2]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[numpy-std-1-1-True-1]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[numpy-std-1-1-True-2]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[numpy-std-1-2-False-1]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[numpy-std-1-2-False-2]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[numpy-std-1-2-True-1]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[numpy-std-1-2-True-2]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[numpy-std-1-3-False-1]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[numpy-std-1-3-False-2]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[numpy-std-1-3-True-1]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[numpy-std-1-3-True-2]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[numpy-std-1-None-False-1]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[numpy-std-1-None-False-2]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[numpy-std-1-None-True-1]
xarray.tests.test_rolling.TestDatasetRolling ‑ test_rolling_reduce[numpy-std-1-None-True-2]
xarray.tests.test_sparse
xarray.tests.test_sparse ‑ test_1d_variable_method[func1-False]
xarray.tests.test_sparse ‑ test_1d_variable_method[func2-False]
xarray.tests.test_sparse ‑ test_1d_variable_method[func3-True]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.argmax(*(), **{})-True]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.argmin(*(), **{})-True]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.argsort(*(), **{})-True]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.bfill(*(), **{'dim': 'x'})-False]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.conjugate(*(), **{})-False]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.cumprod(*(), **{})-True]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.cumsum(*(), **{})-True]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.differentiate(*('x',), **{})-False]

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

2113 skipped tests found (test 730 to 1425)

There are 2113 skipped tests, see "Raw output" for the list of skipped tests 730 to 1425.
Raw output
xarray.tests.test_sparse ‑ test_dataarray_method[obj.dot(*(<xarray.DataArray 'test' (x: 10, y: 5)>\n<COO: shape=(10, 5), dtype=float64, nnz=5, fill_value=0.0>\nCoordinates:\n  * x        (x) int32 0 1 2 3 4 5 6 7 8 9\n  * y        (y) int32 0 1 2 3 4,), **{})-True]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.dot(*(<xarray.DataArray 'test' (x: 10, y: 5)>\n<COO: shape=(10, 5), dtype=float64, nnz=5, fill_value=0.0>\nCoordinates:\n  * x        (x) int64 0 1 2 3 4 5 6 7 8 9\n  * y        (y) int64 0 1 2 3 4,), **{})-True]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.dropna(*('x',), **{})-False]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.ffill(*('x',), **{})-False]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.interp(*(), **{'coords': {'x': array([0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5])}})-True]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.interp_like(*(<xarray.DataArray 'test' (x: 10, y: 5)>\n<COO: shape=(10, 5), dtype=float64, nnz=5, fill_value=0.0>\nCoordinates:\n  * x        (x) float64 0.5 1.5 2.5 3.5 4.5 5.5 6.5 7.5 8.5 9.5\n  * y        (y) float64 0.5 1.5 2.5 3.5 4.5,), **{})-True]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.interpolate_na(*('x',), **{})-True]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.isin(*([1, 2, 3],), **{})-False]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.item(*((1, 1),), **{})-False]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.median(*(), **{})-False]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.quantile(*(), **{'q': 0.5})-False]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.rank(*('x',), **{})-False]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.reduce(*(), **{'func': 'sum', 'dim': 'x'})-False]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.reindex_like(*(<xarray.DataArray 'test' (x: 10, y: 5)>\n<COO: shape=(10, 5), dtype=float64, nnz=5, fill_value=0.0>\nCoordinates:\n  * x        (x) float64 0.5 1.5 2.5 3.5 4.5 5.5 6.5 7.5 8.5 9.5\n  * y        (y) float64 0.5 1.5 2.5 3.5 4.5,), **{})-True]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.sel(*(), **{'x': [0, 1, 2], 'y': [2, 3]})-True]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.std(*(), **{})-False]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.var(*(), **{})-False]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.where(*(<xarray.DataArray 'test' (x: 10, y: 5)>\n<COO: shape=(10, 5), dtype=bool, nnz=3, fill_value=False>\nCoordinates:\n  * x        (x) int64 0 1 2 3 4 5 6 7 8 9\n  * y        (y) int64 0 1 2 3 4,), **{})-False]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.where(*(<xarray.DataArray 'test' (x: 10, y: 5)>\n<COO: shape=(10, 5), dtype=bool, nnz=5, fill_value=False>\nCoordinates:\n  * x        (x) int32 0 1 2 3 4 5 6 7 8 9\n  * y        (y) int32 0 1 2 3 4,), **{})-False]
xarray.tests.test_sparse ‑ test_dataarray_method[obj.where(*(<xarray.DataArray 'test' (x: 10, y: 5)>\n<COO: shape=(10, 5), dtype=bool, nnz=5, fill_value=False>\nCoordinates:\n  * x        (x) int64 0 1 2 3 4 5 6 7 8 9\n  * y        (y) int64 0 1 2 3 4,), **{})-False]
xarray.tests.test_sparse ‑ test_datarray_1d_method[func1-False]
xarray.tests.test_sparse ‑ test_variable_method[obj.argmax(*(), **{})-True]
xarray.tests.test_sparse ‑ test_variable_method[obj.argmin(*(), **{})-True]
xarray.tests.test_sparse ‑ test_variable_method[obj.argsort(*(), **{})-True]
xarray.tests.test_sparse ‑ test_variable_method[obj.conjugate(*(), **{})-True]
xarray.tests.test_sparse ‑ test_variable_method[obj.cumprod(*(), **{})-True]
xarray.tests.test_sparse ‑ test_variable_method[obj.cumsum(*(), **{})-True]
xarray.tests.test_sparse ‑ test_variable_method[obj.item(*((1, 1),), **{})-False]
xarray.tests.test_sparse ‑ test_variable_method[obj.median(*(), **{})-False]
xarray.tests.test_sparse ‑ test_variable_method[obj.no_conflicts(*(), **{'other': <xarray.Variable (x: 10, y: 5)>\n<COO: shape=(10, 5), dtype=float64, nnz=5, fill_value=0.0>})-True]
xarray.tests.test_sparse ‑ test_variable_method[obj.pad(*(), **{'mode': 'constant', 'pad_widths': {'x': (1, 1)}, 'fill_value': 5})-True]
xarray.tests.test_sparse ‑ test_variable_method[obj.quantile(*(), **{'q': 0.5})-True]
xarray.tests.test_sparse ‑ test_variable_method[obj.rank(*(), **{'dim': 'x'})-False]
xarray.tests.test_sparse ‑ test_variable_method[obj.rolling_window(*(), **{'dim': 'x', 'window': 2, 'window_dim': 'x_win'})-True]
xarray.tests.test_sparse ‑ test_variable_method[obj.shift(*(), **{'x': 2})-True]
xarray.tests.test_sparse ‑ test_variable_method[obj.std(*(), **{})-False]
xarray.tests.test_sparse ‑ test_variable_method[obj.to_dict(*(), **{})-False]
xarray.tests.test_sparse ‑ test_variable_method[obj.var(*(), **{})-False]
xarray.tests.test_sparse ‑ test_variable_property[values]
xarray.tests.test_sparse.TestSparseCoords ‑ test_sparse_coords
xarray.tests.test_sparse.TestSparseDataArrayAndDataset ‑ test_align_2d
xarray.tests.test_sparse.TestSparseDataArrayAndDataset ‑ test_dot
xarray.tests.test_sparse.TestSparseDataArrayAndDataset ‑ test_groupby
xarray.tests.test_sparse.TestSparseDataArrayAndDataset ‑ test_groupby_bins
xarray.tests.test_sparse.TestSparseDataArrayAndDataset ‑ test_groupby_first
xarray.tests.test_sparse.TestSparseDataArrayAndDataset ‑ test_merge
xarray.tests.test_sparse.TestSparseDataArrayAndDataset ‑ test_reindex
xarray.tests.test_sparse.TestSparseDataArrayAndDataset ‑ test_resample
xarray.tests.test_sparse.TestSparseDataArrayAndDataset ‑ test_rolling
xarray.tests.test_sparse.TestSparseDataArrayAndDataset ‑ test_rolling_exp
xarray.tests.test_sparse.TestSparseDataArrayAndDataset ‑ test_where
xarray.tests.test_units ‑ test_align_dataarray[float64-10-coords-compatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[float64-10-coords-dimensionless]
xarray.tests.test_units ‑ test_align_dataarray[float64-10-coords-identical_unit]
xarray.tests.test_units ‑ test_align_dataarray[float64-10-coords-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[float64-10-coords-no_unit]
xarray.tests.test_units ‑ test_align_dataarray[float64-10-dims-compatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[float64-10-dims-dimensionless]
xarray.tests.test_units ‑ test_align_dataarray[float64-10-dims-identical_unit]
xarray.tests.test_units ‑ test_align_dataarray[float64-10-dims-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[float64-10-dims-no_unit]
xarray.tests.test_units ‑ test_align_dataarray[float64-value1-coords-compatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[float64-value1-coords-dimensionless]
xarray.tests.test_units ‑ test_align_dataarray[float64-value1-coords-identical_unit]
xarray.tests.test_units ‑ test_align_dataarray[float64-value1-coords-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[float64-value1-dims-compatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[float64-value1-dims-dimensionless]
xarray.tests.test_units ‑ test_align_dataarray[float64-value1-dims-identical_unit]
xarray.tests.test_units ‑ test_align_dataarray[float64-value1-dims-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[float64-value1-dims-no_unit]
xarray.tests.test_units ‑ test_align_dataarray[int32-10-coords-compatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[int32-10-coords-dimensionless]
xarray.tests.test_units ‑ test_align_dataarray[int32-10-coords-identical_unit]
xarray.tests.test_units ‑ test_align_dataarray[int32-10-coords-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[int32-10-coords-no_unit]
xarray.tests.test_units ‑ test_align_dataarray[int32-10-dims-compatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[int32-10-dims-dimensionless]
xarray.tests.test_units ‑ test_align_dataarray[int32-10-dims-identical_unit]
xarray.tests.test_units ‑ test_align_dataarray[int32-10-dims-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[int32-10-dims-no_unit]
xarray.tests.test_units ‑ test_align_dataarray[int32-value1-coords-compatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[int32-value1-coords-dimensionless]
xarray.tests.test_units ‑ test_align_dataarray[int32-value1-coords-identical_unit]
xarray.tests.test_units ‑ test_align_dataarray[int32-value1-coords-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[int32-value1-dims-compatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[int32-value1-dims-dimensionless]
xarray.tests.test_units ‑ test_align_dataarray[int32-value1-dims-identical_unit]
xarray.tests.test_units ‑ test_align_dataarray[int32-value1-dims-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[int32-value1-dims-no_unit]
xarray.tests.test_units ‑ test_align_dataarray[int64-10-coords-compatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[int64-10-coords-dimensionless]
xarray.tests.test_units ‑ test_align_dataarray[int64-10-coords-identical_unit]
xarray.tests.test_units ‑ test_align_dataarray[int64-10-coords-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[int64-10-coords-no_unit]
xarray.tests.test_units ‑ test_align_dataarray[int64-10-dims-compatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[int64-10-dims-dimensionless]
xarray.tests.test_units ‑ test_align_dataarray[int64-10-dims-identical_unit]
xarray.tests.test_units ‑ test_align_dataarray[int64-10-dims-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[int64-10-dims-no_unit]
xarray.tests.test_units ‑ test_align_dataarray[int64-value1-coords-compatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[int64-value1-coords-dimensionless]
xarray.tests.test_units ‑ test_align_dataarray[int64-value1-coords-identical_unit]
xarray.tests.test_units ‑ test_align_dataarray[int64-value1-coords-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[int64-value1-dims-compatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[int64-value1-dims-dimensionless]
xarray.tests.test_units ‑ test_align_dataarray[int64-value1-dims-identical_unit]
xarray.tests.test_units ‑ test_align_dataarray[int64-value1-dims-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataarray[int64-value1-dims-no_unit]
xarray.tests.test_units ‑ test_align_dataset[float64-10-coords-compatible_unit]
xarray.tests.test_units ‑ test_align_dataset[float64-10-coords-dimensionless]
xarray.tests.test_units ‑ test_align_dataset[float64-10-coords-identical_unit]
xarray.tests.test_units ‑ test_align_dataset[float64-10-coords-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataset[float64-10-coords-no_unit]
xarray.tests.test_units ‑ test_align_dataset[float64-10-dims-compatible_unit]
xarray.tests.test_units ‑ test_align_dataset[float64-10-dims-dimensionless]
xarray.tests.test_units ‑ test_align_dataset[float64-10-dims-identical_unit]
xarray.tests.test_units ‑ test_align_dataset[float64-10-dims-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataset[float64-10-dims-no_unit]
xarray.tests.test_units ‑ test_align_dataset[float64-value1-coords-compatible_unit]
xarray.tests.test_units ‑ test_align_dataset[float64-value1-coords-dimensionless]
xarray.tests.test_units ‑ test_align_dataset[float64-value1-coords-identical_unit]
xarray.tests.test_units ‑ test_align_dataset[float64-value1-coords-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataset[float64-value1-dims-compatible_unit]
xarray.tests.test_units ‑ test_align_dataset[float64-value1-dims-dimensionless]
xarray.tests.test_units ‑ test_align_dataset[float64-value1-dims-identical_unit]
xarray.tests.test_units ‑ test_align_dataset[float64-value1-dims-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataset[float64-value1-dims-no_unit]
xarray.tests.test_units ‑ test_align_dataset[int32-10-coords-compatible_unit]
xarray.tests.test_units ‑ test_align_dataset[int32-10-coords-dimensionless]
xarray.tests.test_units ‑ test_align_dataset[int32-10-coords-identical_unit]
xarray.tests.test_units ‑ test_align_dataset[int32-10-coords-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataset[int32-10-coords-no_unit]
xarray.tests.test_units ‑ test_align_dataset[int32-10-dims-compatible_unit]
xarray.tests.test_units ‑ test_align_dataset[int32-10-dims-dimensionless]
xarray.tests.test_units ‑ test_align_dataset[int32-10-dims-identical_unit]
xarray.tests.test_units ‑ test_align_dataset[int32-10-dims-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataset[int32-10-dims-no_unit]
xarray.tests.test_units ‑ test_align_dataset[int32-value1-coords-compatible_unit]
xarray.tests.test_units ‑ test_align_dataset[int32-value1-coords-dimensionless]
xarray.tests.test_units ‑ test_align_dataset[int32-value1-coords-identical_unit]
xarray.tests.test_units ‑ test_align_dataset[int32-value1-coords-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataset[int32-value1-dims-compatible_unit]
xarray.tests.test_units ‑ test_align_dataset[int32-value1-dims-dimensionless]
xarray.tests.test_units ‑ test_align_dataset[int32-value1-dims-identical_unit]
xarray.tests.test_units ‑ test_align_dataset[int32-value1-dims-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataset[int32-value1-dims-no_unit]
xarray.tests.test_units ‑ test_align_dataset[int64-10-coords-compatible_unit]
xarray.tests.test_units ‑ test_align_dataset[int64-10-coords-dimensionless]
xarray.tests.test_units ‑ test_align_dataset[int64-10-coords-identical_unit]
xarray.tests.test_units ‑ test_align_dataset[int64-10-coords-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataset[int64-10-coords-no_unit]
xarray.tests.test_units ‑ test_align_dataset[int64-10-dims-compatible_unit]
xarray.tests.test_units ‑ test_align_dataset[int64-10-dims-dimensionless]
xarray.tests.test_units ‑ test_align_dataset[int64-10-dims-identical_unit]
xarray.tests.test_units ‑ test_align_dataset[int64-10-dims-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataset[int64-10-dims-no_unit]
xarray.tests.test_units ‑ test_align_dataset[int64-value1-coords-compatible_unit]
xarray.tests.test_units ‑ test_align_dataset[int64-value1-coords-dimensionless]
xarray.tests.test_units ‑ test_align_dataset[int64-value1-coords-identical_unit]
xarray.tests.test_units ‑ test_align_dataset[int64-value1-coords-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataset[int64-value1-dims-compatible_unit]
xarray.tests.test_units ‑ test_align_dataset[int64-value1-dims-dimensionless]
xarray.tests.test_units ‑ test_align_dataset[int64-value1-dims-identical_unit]
xarray.tests.test_units ‑ test_align_dataset[int64-value1-dims-incompatible_unit]
xarray.tests.test_units ‑ test_align_dataset[int64-value1-dims-no_unit]
xarray.tests.test_units ‑ test_apply_ufunc_dataarray[float64-dims]
xarray.tests.test_units ‑ test_apply_ufunc_dataarray[int32-dims]
xarray.tests.test_units ‑ test_apply_ufunc_dataarray[int64-dims]
xarray.tests.test_units ‑ test_apply_ufunc_dataset[float64-dims]
xarray.tests.test_units ‑ test_apply_ufunc_dataset[int32-dims]
xarray.tests.test_units ‑ test_apply_ufunc_dataset[int64-dims]
xarray.tests.test_units ‑ test_combine_by_coords[float64-dims-compatible_unit]
xarray.tests.test_units ‑ test_combine_by_coords[float64-dims-dimensionless]
xarray.tests.test_units ‑ test_combine_by_coords[float64-dims-identical_unit]
xarray.tests.test_units ‑ test_combine_by_coords[float64-dims-incompatible_unit]
xarray.tests.test_units ‑ test_combine_by_coords[float64-dims-no_unit]
xarray.tests.test_units ‑ test_combine_by_coords[int32-dims-compatible_unit]
xarray.tests.test_units ‑ test_combine_by_coords[int32-dims-dimensionless]
xarray.tests.test_units ‑ test_combine_by_coords[int32-dims-identical_unit]
xarray.tests.test_units ‑ test_combine_by_coords[int32-dims-incompatible_unit]
xarray.tests.test_units ‑ test_combine_by_coords[int32-dims-no_unit]
xarray.tests.test_units ‑ test_combine_by_coords[int64-dims-compatible_unit]
xarray.tests.test_units ‑ test_combine_by_coords[int64-dims-dimensionless]
xarray.tests.test_units ‑ test_combine_by_coords[int64-dims-identical_unit]
xarray.tests.test_units ‑ test_combine_by_coords[int64-dims-incompatible_unit]
xarray.tests.test_units ‑ test_combine_by_coords[int64-dims-no_unit]
xarray.tests.test_units ‑ test_combine_nested[float64-dims-compatible_unit]
xarray.tests.test_units ‑ test_combine_nested[float64-dims-dimensionless]
xarray.tests.test_units ‑ test_combine_nested[float64-dims-identical_unit]
xarray.tests.test_units ‑ test_combine_nested[float64-dims-incompatible_unit]
xarray.tests.test_units ‑ test_combine_nested[float64-dims-no_unit]
xarray.tests.test_units ‑ test_combine_nested[int32-dims-compatible_unit]
xarray.tests.test_units ‑ test_combine_nested[int32-dims-dimensionless]
xarray.tests.test_units ‑ test_combine_nested[int32-dims-identical_unit]
xarray.tests.test_units ‑ test_combine_nested[int32-dims-incompatible_unit]
xarray.tests.test_units ‑ test_combine_nested[int32-dims-no_unit]
xarray.tests.test_units ‑ test_combine_nested[int64-dims-compatible_unit]
xarray.tests.test_units ‑ test_combine_nested[int64-dims-dimensionless]
xarray.tests.test_units ‑ test_combine_nested[int64-dims-identical_unit]
xarray.tests.test_units ‑ test_combine_nested[int64-dims-incompatible_unit]
xarray.tests.test_units ‑ test_combine_nested[int64-dims-no_unit]
xarray.tests.test_units ‑ test_concat_dataarray[float64-dims-compatible_unit]
xarray.tests.test_units ‑ test_concat_dataarray[float64-dims-dimensionless]
xarray.tests.test_units ‑ test_concat_dataarray[float64-dims-identical_unit]
xarray.tests.test_units ‑ test_concat_dataarray[float64-dims-incompatible_unit]
xarray.tests.test_units ‑ test_concat_dataarray[float64-dims-no_unit]
xarray.tests.test_units ‑ test_concat_dataarray[int32-dims-compatible_unit]
xarray.tests.test_units ‑ test_concat_dataarray[int32-dims-dimensionless]
xarray.tests.test_units ‑ test_concat_dataarray[int32-dims-identical_unit]
xarray.tests.test_units ‑ test_concat_dataarray[int32-dims-incompatible_unit]
xarray.tests.test_units ‑ test_concat_dataarray[int32-dims-no_unit]
xarray.tests.test_units ‑ test_concat_dataarray[int64-dims-compatible_unit]
xarray.tests.test_units ‑ test_concat_dataarray[int64-dims-dimensionless]
xarray.tests.test_units ‑ test_concat_dataarray[int64-dims-identical_unit]
xarray.tests.test_units ‑ test_concat_dataarray[int64-dims-incompatible_unit]
xarray.tests.test_units ‑ test_concat_dataarray[int64-dims-no_unit]
xarray.tests.test_units ‑ test_concat_dataset[float64-dims-compatible_unit]
xarray.tests.test_units ‑ test_concat_dataset[float64-dims-dimensionless]
xarray.tests.test_units ‑ test_concat_dataset[float64-dims-identical_unit]
xarray.tests.test_units ‑ test_concat_dataset[float64-dims-incompatible_unit]
xarray.tests.test_units ‑ test_concat_dataset[float64-dims-no_unit]
xarray.tests.test_units ‑ test_concat_dataset[int32-dims-compatible_unit]
xarray.tests.test_units ‑ test_concat_dataset[int32-dims-dimensionless]
xarray.tests.test_units ‑ test_concat_dataset[int32-dims-identical_unit]
xarray.tests.test_units ‑ test_concat_dataset[int32-dims-incompatible_unit]
xarray.tests.test_units ‑ test_concat_dataset[int32-dims-no_unit]
xarray.tests.test_units ‑ test_concat_dataset[int64-dims-compatible_unit]
xarray.tests.test_units ‑ test_concat_dataset[int64-dims-dimensionless]
xarray.tests.test_units ‑ test_concat_dataset[int64-dims-identical_unit]
xarray.tests.test_units ‑ test_concat_dataset[int64-dims-incompatible_unit]
xarray.tests.test_units ‑ test_concat_dataset[int64-dims-no_unit]
xarray.tests.test_units ‑ test_merge_dataarray[float64-dims-compatible_unit]
xarray.tests.test_units ‑ test_merge_dataarray[float64-dims-dimensionless]
xarray.tests.test_units ‑ test_merge_dataarray[float64-dims-identical_unit]
xarray.tests.test_units ‑ test_merge_dataarray[float64-dims-incompatible_unit]
xarray.tests.test_units ‑ test_merge_dataarray[float64-dims-no_unit]
xarray.tests.test_units ‑ test_merge_dataarray[int32-dims-compatible_unit]
xarray.tests.test_units ‑ test_merge_dataarray[int32-dims-dimensionless]
xarray.tests.test_units ‑ test_merge_dataarray[int32-dims-identical_unit]
xarray.tests.test_units ‑ test_merge_dataarray[int32-dims-incompatible_unit]
xarray.tests.test_units ‑ test_merge_dataarray[int32-dims-no_unit]
xarray.tests.test_units ‑ test_merge_dataarray[int64-dims-compatible_unit]
xarray.tests.test_units ‑ test_merge_dataarray[int64-dims-dimensionless]
xarray.tests.test_units ‑ test_merge_dataarray[int64-dims-identical_unit]
xarray.tests.test_units ‑ test_merge_dataarray[int64-dims-incompatible_unit]
xarray.tests.test_units ‑ test_merge_dataarray[int64-dims-no_unit]
xarray.tests.test_units ‑ test_merge_dataset[float64-dims-compatible_unit]
xarray.tests.test_units ‑ test_merge_dataset[float64-dims-dimensionless]
xarray.tests.test_units ‑ test_merge_dataset[float64-dims-identical_unit]
xarray.tests.test_units ‑ test_merge_dataset[float64-dims-incompatible_unit]
xarray.tests.test_units ‑ test_merge_dataset[float64-dims-no_unit]
xarray.tests.test_units ‑ test_merge_dataset[int32-dims-compatible_unit]
xarray.tests.test_units ‑ test_merge_dataset[int32-dims-dimensionless]
xarray.tests.test_units ‑ test_merge_dataset[int32-dims-identical_unit]
xarray.tests.test_units ‑ test_merge_dataset[int32-dims-incompatible_unit]
xarray.tests.test_units ‑ test_merge_dataset[int32-dims-no_unit]
xarray.tests.test_units ‑ test_merge_dataset[int64-dims-compatible_unit]
xarray.tests.test_units ‑ test_merge_dataset[int64-dims-dimensionless]
xarray.tests.test_units ‑ test_merge_dataset[int64-dims-identical_unit]
xarray.tests.test_units ‑ test_merge_dataset[int64-dims-incompatible_unit]
xarray.tests.test_units ‑ test_merge_dataset[int64-dims-no_unit]
xarray.tests.test_units ‑ test_replication_dataarray[float64-ones_like-dims]
xarray.tests.test_units ‑ test_replication_dataarray[float64-zeros_like-dims]
xarray.tests.test_units ‑ test_replication_dataarray[int32-ones_like-dims]
xarray.tests.test_units ‑ test_replication_dataarray[int32-zeros_like-dims]
xarray.tests.test_units ‑ test_replication_dataarray[int64-ones_like-dims]
xarray.tests.test_units ‑ test_replication_dataarray[int64-zeros_like-dims]
xarray.tests.test_units ‑ test_replication_dataset[float64-ones_like-dims]
xarray.tests.test_units ‑ test_replication_dataset[float64-zeros_like-dims]
xarray.tests.test_units ‑ test_replication_dataset[int32-ones_like-dims]
xarray.tests.test_units ‑ test_replication_dataset[int32-zeros_like-dims]
xarray.tests.test_units ‑ test_replication_dataset[int64-ones_like-dims]
xarray.tests.test_units ‑ test_replication_dataset[int64-zeros_like-dims]
xarray.tests.test_units ‑ test_replication_full_like_dataarray[float64-coords]
xarray.tests.test_units ‑ test_replication_full_like_dataarray[float64-dims]
xarray.tests.test_units ‑ test_replication_full_like_dataarray[int32-coords]
xarray.tests.test_units ‑ test_replication_full_like_dataarray[int32-dims]
xarray.tests.test_units ‑ test_replication_full_like_dataarray[int64-coords]
xarray.tests.test_units ‑ test_replication_full_like_dataarray[int64-dims]
xarray.tests.test_units ‑ test_replication_full_like_dataset[float64-coords]
xarray.tests.test_units ‑ test_replication_full_like_dataset[float64-dims]
xarray.tests.test_units ‑ test_replication_full_like_dataset[int32-coords]
xarray.tests.test_units ‑ test_replication_full_like_dataset[int32-dims]
xarray.tests.test_units ‑ test_replication_full_like_dataset[int64-coords]
xarray.tests.test_units ‑ test_replication_full_like_dataset[int64-dims]
xarray.tests.test_units.TestDataArray ‑ test_aggregation[float64-function_argmax]
xarray.tests.test_units.TestDataArray ‑ test_aggregation[float64-function_argmin]
xarray.tests.test_units.TestDataArray ‑ test_aggregation[float64-function_median]
xarray.tests.test_units.TestDataArray ‑ test_aggregation[int32-function_argmax]
xarray.tests.test_units.TestDataArray ‑ test_aggregation[int32-function_argmin]
xarray.tests.test_units.TestDataArray ‑ test_aggregation[int32-function_median]
xarray.tests.test_units.TestDataArray ‑ test_aggregation[int64-function_argmax]
xarray.tests.test_units.TestDataArray ‑ test_aggregation[int64-function_argmin]
xarray.tests.test_units.TestDataArray ‑ test_aggregation[int64-function_median]
xarray.tests.test_units.TestDataArray ‑ test_bivariate_ufunc[float64-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_bivariate_ufunc[int32-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_bivariate_ufunc[int64-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_broadcast_like[float64-dims-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_broadcast_like[float64-dims-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_broadcast_like[float64-dims-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_broadcast_like[float64-dims-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_broadcast_like[float64-dims-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_broadcast_like[int32-dims-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_broadcast_like[int32-dims-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_broadcast_like[int32-dims-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_broadcast_like[int32-dims-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_broadcast_like[int32-dims-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_broadcast_like[int64-dims-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_broadcast_like[int64-dims-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_broadcast_like[int64-dims-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_broadcast_like[int64-dims-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_broadcast_like[int64-dims-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_equals-dims-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_equals-dims-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_equals-dims-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_equals-dims-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_equals-dims-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_identical-coords-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_identical-coords-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_identical-coords-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_identical-coords-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_identical-coords-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_identical-data-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_identical-data-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_identical-data-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_identical-data-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_identical-data-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_identical-dims-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_identical-dims-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_identical-dims-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_identical-dims-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[float64-method_identical-dims-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_equals-dims-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_equals-dims-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_equals-dims-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_equals-dims-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_equals-dims-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_identical-coords-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_identical-coords-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_identical-coords-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_identical-coords-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_identical-coords-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_identical-data-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_identical-data-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_identical-data-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_identical-data-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_identical-data-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_identical-dims-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_identical-dims-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_identical-dims-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_identical-dims-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int32-method_identical-dims-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_equals-dims-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_equals-dims-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_equals-dims-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_equals-dims-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_equals-dims-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_identical-coords-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_identical-coords-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_identical-coords-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_identical-coords-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_identical-coords-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_identical-data-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_identical-data-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_identical-data-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_identical-data-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_identical-data-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_identical-dims-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_identical-dims-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_identical-dims-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_identical-dims-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_comparisons[int64-method_identical-dims-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_computation[float64-method_diff-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation[float64-method_dot-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation[float64-method_quantile-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation[float64-method_reduce-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation[int32-method_diff-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation[int32-method_dot-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation[int32-method_quantile-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation[int32-method_reduce-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation[int64-method_diff-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation[int64-method_dot-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation[int64-method_quantile-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation[int64-method_reduce-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[float64-method_coarsen-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[float64-method_groupby-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[float64-method_groupby_bins-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[float64-method_rolling-data]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[float64-method_rolling-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[float64-method_rolling_exp-data]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[float64-method_rolling_exp-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[float64-method_weighted-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[int32-method_coarsen-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[int32-method_groupby-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[int32-method_groupby_bins-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[int32-method_rolling-data]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[int32-method_rolling-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[int32-method_rolling_exp-data]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[int32-method_rolling_exp-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[int32-method_weighted-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[int64-method_coarsen-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[int64-method_groupby-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[int64-method_groupby_bins-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[int64-method_rolling-data]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[int64-method_rolling-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[int64-method_rolling_exp-data]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[int64-method_rolling_exp-dims]
xarray.tests.test_units.TestDataArray ‑ test_computation_objects[int64-method_weighted-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[float64-method_assign_attrs-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[float64-method_assign_coords-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[float64-method_astype-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[float64-method_copy-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[float64-method_drop_vars-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[float64-method_expand_dims-coords]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[float64-method_expand_dims-data]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[float64-method_expand_dims-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[float64-method_pipe-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[float64-method_rename-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[float64-method_reset_coords-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[float64-method_swap_dims-coords]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[float64-method_swap_dims-data]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[float64-method_swap_dims-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int32-method_assign_attrs-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int32-method_assign_coords-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int32-method_astype-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int32-method_copy-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int32-method_drop_vars-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int32-method_expand_dims-coords]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int32-method_expand_dims-data]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int32-method_expand_dims-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int32-method_pipe-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int32-method_rename-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int32-method_reset_coords-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int32-method_swap_dims-coords]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int32-method_swap_dims-data]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int32-method_swap_dims-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int64-method_assign_attrs-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int64-method_assign_coords-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int64-method_astype-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int64-method_copy-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int64-method_drop_vars-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int64-method_expand_dims-coords]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int64-method_expand_dims-data]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int64-method_expand_dims-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int64-method_pipe-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int64-method_rename-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int64-method_reset_coords-dims]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int64-method_swap_dims-coords]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int64-method_swap_dims-data]
xarray.tests.test_units.TestDataArray ‑ test_content_manipulation[int64-method_swap_dims-dims]
xarray.tests.test_units.TestDataArray ‑ test_differentiate_integrate[float64-method_cumulative_integrate-dims]
xarray.tests.test_units.TestDataArray ‑ test_differentiate_integrate[float64-method_differentiate-dims]
xarray.tests.test_units.TestDataArray ‑ test_differentiate_integrate[float64-method_integrate-dims]
xarray.tests.test_units.TestDataArray ‑ test_differentiate_integrate[int32-method_cumulative_integrate-dims]
xarray.tests.test_units.TestDataArray ‑ test_differentiate_integrate[int32-method_differentiate-dims]
xarray.tests.test_units.TestDataArray ‑ test_differentiate_integrate[int32-method_integrate-dims]
xarray.tests.test_units.TestDataArray ‑ test_differentiate_integrate[int64-method_cumulative_integrate-dims]
xarray.tests.test_units.TestDataArray ‑ test_differentiate_integrate[int64-method_differentiate-dims]
xarray.tests.test_units.TestDataArray ‑ test_differentiate_integrate[int64-method_integrate-dims]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[float64-compatible_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[float64-compatible_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[float64-compatible_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[float64-dimensionless-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[float64-dimensionless-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[float64-dimensionless-single_value]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[float64-identical_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[float64-identical_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[float64-identical_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[float64-incompatible_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[float64-incompatible_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[float64-incompatible_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[float64-no_units-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[float64-no_units-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[float64-no_units-single_value]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int32-compatible_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int32-compatible_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int32-compatible_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int32-dimensionless-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int32-dimensionless-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int32-dimensionless-single_value]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int32-identical_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int32-identical_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int32-identical_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int32-incompatible_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int32-incompatible_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int32-incompatible_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int32-no_units-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int32-no_units-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int32-no_units-single_value]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int64-compatible_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int64-compatible_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int64-compatible_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int64-dimensionless-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int64-dimensionless-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int64-dimensionless-single_value]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int64-identical_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int64-identical_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int64-identical_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int64-incompatible_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int64-incompatible_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int64-incompatible_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int64-no_units-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int64-no_units-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_drop_sel[int64-no_units-single_value]
xarray.tests.test_units.TestDataArray ‑ test_grouped_operations[float64-method_assign_coords-dims]
xarray.tests.test_units.TestDataArray ‑ test_grouped_operations[float64-method_first-dims]
xarray.tests.test_units.TestDataArray ‑ test_grouped_operations[float64-method_last-dims]
xarray.tests.test_units.TestDataArray ‑ test_grouped_operations[float64-method_quantile-dims]
xarray.tests.test_units.TestDataArray ‑ test_grouped_operations[int32-method_assign_coords-dims]
xarray.tests.test_units.TestDataArray ‑ test_grouped_operations[int32-method_first-dims]
xarray.tests.test_units.TestDataArray ‑ test_grouped_operations[int32-method_last-dims]
xarray.tests.test_units.TestDataArray ‑ test_grouped_operations[int32-method_quantile-dims]
xarray.tests.test_units.TestDataArray ‑ test_grouped_operations[int64-method_assign_coords-dims]
xarray.tests.test_units.TestDataArray ‑ test_grouped_operations[int64-method_first-dims]
xarray.tests.test_units.TestDataArray ‑ test_grouped_operations[int64-method_last-dims]
xarray.tests.test_units.TestDataArray ‑ test_grouped_operations[int64-method_quantile-dims]
xarray.tests.test_units.TestDataArray ‑ test_init[float64-with_dims]
xarray.tests.test_units.TestDataArray ‑ test_init[int32-with_dims]
xarray.tests.test_units.TestDataArray ‑ test_init[int64-with_dims]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex[float64-method_interp-coords]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex[float64-method_interp-data]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex[int32-method_interp-coords]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex[int32-method_interp-data]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex[int64-method_interp-coords]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex[int64-method_interp-data]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[float64-method_interp-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[float64-method_interp-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[float64-method_interp-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[float64-method_interp-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[float64-method_interp-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[float64-method_reindex-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[float64-method_reindex-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[float64-method_reindex-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[float64-method_reindex-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[float64-method_reindex-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int32-method_interp-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int32-method_interp-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int32-method_interp-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int32-method_interp-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int32-method_interp-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int32-method_reindex-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int32-method_reindex-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int32-method_reindex-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int32-method_reindex-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int32-method_reindex-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int64-method_interp-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int64-method_interp-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int64-method_interp-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int64-method_interp-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int64-method_interp-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int64-method_reindex-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int64-method_reindex-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int64-method_reindex-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int64-method_reindex-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_indexing[int64-method_reindex-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like[float64-method_interp_like-coords]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like[float64-method_interp_like-data]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like[int32-method_interp_like-coords]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like[int32-method_interp_like-data]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like[int64-method_interp_like-coords]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like[int64-method_interp_like-data]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[float64-method_interp_like-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[float64-method_interp_like-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[float64-method_interp_like-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[float64-method_interp_like-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[float64-method_interp_like-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[float64-method_reindex_like-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[float64-method_reindex_like-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[float64-method_reindex_like-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[float64-method_reindex_like-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[float64-method_reindex_like-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int32-method_interp_like-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int32-method_interp_like-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int32-method_interp_like-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int32-method_interp_like-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int32-method_interp_like-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int32-method_reindex_like-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int32-method_reindex_like-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int32-method_reindex_like-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int32-method_reindex_like-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int32-method_reindex_like-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int64-method_interp_like-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int64-method_interp_like-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int64-method_interp_like-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int64-method_interp_like-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int64-method_interp_like-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int64-method_reindex_like-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int64-method_reindex_like-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int64-method_reindex_like-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int64-method_reindex_like-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_interp_reindex_like_indexing[int64-method_reindex_like-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_interpolate_na
xarray.tests.test_units.TestDataArray ‑ test_loc[float64-compatible_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[float64-compatible_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[float64-compatible_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_loc[float64-dimensionless-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[float64-dimensionless-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[float64-dimensionless-single_value]
xarray.tests.test_units.TestDataArray ‑ test_loc[float64-identical_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[float64-identical_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[float64-identical_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_loc[float64-incompatible_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[float64-incompatible_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[float64-incompatible_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_loc[float64-no_units-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[float64-no_units-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[float64-no_units-single_value]
xarray.tests.test_units.TestDataArray ‑ test_loc[int32-compatible_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int32-compatible_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int32-compatible_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_loc[int32-dimensionless-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int32-dimensionless-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int32-dimensionless-single_value]
xarray.tests.test_units.TestDataArray ‑ test_loc[int32-identical_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int32-identical_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int32-identical_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_loc[int32-incompatible_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int32-incompatible_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int32-incompatible_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_loc[int32-no_units-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int32-no_units-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int32-no_units-single_value]
xarray.tests.test_units.TestDataArray ‑ test_loc[int64-compatible_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int64-compatible_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int64-compatible_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_loc[int64-dimensionless-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int64-dimensionless-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int64-dimensionless-single_value]
xarray.tests.test_units.TestDataArray ‑ test_loc[int64-identical_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int64-identical_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int64-identical_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_loc[int64-incompatible_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int64-incompatible_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int64-incompatible_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_loc[int64-no_units-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int64-no_units-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_loc[int64-no_units-single_value]
xarray.tests.test_units.TestDataArray ‑ test_missing_value_filling[float64-method_bfill]
xarray.tests.test_units.TestDataArray ‑ test_missing_value_filling[float64-method_ffill]
xarray.tests.test_units.TestDataArray ‑ test_missing_value_filling[int32-method_bfill]
xarray.tests.test_units.TestDataArray ‑ test_missing_value_filling[int32-method_ffill]
xarray.tests.test_units.TestDataArray ‑ test_missing_value_filling[int64-method_bfill]
xarray.tests.test_units.TestDataArray ‑ test_missing_value_filling[int64-method_ffill]
xarray.tests.test_units.TestDataArray ‑ test_numpy_methods_with_args[float64-compatible_unit-function_clip]
xarray.tests.test_units.TestDataArray ‑ test_numpy_methods_with_args[float64-dimensionless-function_clip]
xarray.tests.test_units.TestDataArray ‑ test_numpy_methods_with_args[float64-identical_unit-function_clip]
xarray.tests.test_units.TestDataArray ‑ test_numpy_methods_with_args[float64-incompatible_unit-function_clip]
xarray.tests.test_units.TestDataArray ‑ test_numpy_methods_with_args[float64-no_unit-function_clip]
xarray.tests.test_units.TestDataArray ‑ test_numpy_methods_with_args[int32-compatible_unit-function_clip]
xarray.tests.test_units.TestDataArray ‑ test_numpy_methods_with_args[int32-dimensionless-function_clip]
xarray.tests.test_units.TestDataArray ‑ test_numpy_methods_with_args[int32-identical_unit-function_clip]
xarray.tests.test_units.TestDataArray ‑ test_numpy_methods_with_args[int32-incompatible_unit-function_clip]
xarray.tests.test_units.TestDataArray ‑ test_numpy_methods_with_args[int32-no_unit-function_clip]
xarray.tests.test_units.TestDataArray ‑ test_numpy_methods_with_args[int64-compatible_unit-function_clip]
xarray.tests.test_units.TestDataArray ‑ test_numpy_methods_with_args[int64-dimensionless-function_clip]
xarray.tests.test_units.TestDataArray ‑ test_numpy_methods_with_args[int64-identical_unit-function_clip]
xarray.tests.test_units.TestDataArray ‑ test_numpy_methods_with_args[int64-incompatible_unit-function_clip]
xarray.tests.test_units.TestDataArray ‑ test_numpy_methods_with_args[int64-no_unit-function_clip]
xarray.tests.test_units.TestDataArray ‑ test_repr[float64-with_dims-repr]
xarray.tests.test_units.TestDataArray ‑ test_repr[float64-with_dims-str]
xarray.tests.test_units.TestDataArray ‑ test_repr[int32-with_dims-repr]
xarray.tests.test_units.TestDataArray ‑ test_repr[int32-with_dims-str]
xarray.tests.test_units.TestDataArray ‑ test_repr[int64-with_dims-repr]
xarray.tests.test_units.TestDataArray ‑ test_repr[int64-with_dims-str]
xarray.tests.test_units.TestDataArray ‑ test_searchsorted[float64-function_searchsorted-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_searchsorted[float64-function_searchsorted-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_searchsorted[float64-function_searchsorted-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_searchsorted[float64-function_searchsorted-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_searchsorted[float64-function_searchsorted-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_searchsorted[int32-function_searchsorted-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_searchsorted[int32-function_searchsorted-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_searchsorted[int32-function_searchsorted-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_searchsorted[int32-function_searchsorted-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_searchsorted[int32-function_searchsorted-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_searchsorted[int64-function_searchsorted-compatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_searchsorted[int64-function_searchsorted-dimensionless]
xarray.tests.test_units.TestDataArray ‑ test_searchsorted[int64-function_searchsorted-identical_unit]
xarray.tests.test_units.TestDataArray ‑ test_searchsorted[int64-function_searchsorted-incompatible_unit]
xarray.tests.test_units.TestDataArray ‑ test_searchsorted[int64-function_searchsorted-no_unit]
xarray.tests.test_units.TestDataArray ‑ test_sel[float64-compatible_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[float64-compatible_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[float64-compatible_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_sel[float64-dimensionless-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[float64-dimensionless-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[float64-dimensionless-single_value]
xarray.tests.test_units.TestDataArray ‑ test_sel[float64-identical_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[float64-identical_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[float64-identical_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_sel[float64-incompatible_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[float64-incompatible_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[float64-incompatible_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_sel[float64-no_units-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[float64-no_units-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[float64-no_units-single_value]
xarray.tests.test_units.TestDataArray ‑ test_sel[int32-compatible_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int32-compatible_unit-list_of_values]

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

2113 skipped tests found (test 1426 to 2113)

There are 2113 skipped tests, see "Raw output" for the list of skipped tests 1426 to 2113.
Raw output
xarray.tests.test_units.TestDataArray ‑ test_sel[int32-compatible_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_sel[int32-dimensionless-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int32-dimensionless-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int32-dimensionless-single_value]
xarray.tests.test_units.TestDataArray ‑ test_sel[int32-identical_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int32-identical_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int32-identical_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_sel[int32-incompatible_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int32-incompatible_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int32-incompatible_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_sel[int32-no_units-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int32-no_units-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int32-no_units-single_value]
xarray.tests.test_units.TestDataArray ‑ test_sel[int64-compatible_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int64-compatible_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int64-compatible_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_sel[int64-dimensionless-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int64-dimensionless-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int64-dimensionless-single_value]
xarray.tests.test_units.TestDataArray ‑ test_sel[int64-identical_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int64-identical_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int64-identical_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_sel[int64-incompatible_unit-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int64-incompatible_unit-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int64-incompatible_unit-single_value]
xarray.tests.test_units.TestDataArray ‑ test_sel[int64-no_units-array_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int64-no_units-list_of_values]
xarray.tests.test_units.TestDataArray ‑ test_sel[int64-no_units-single_value]
xarray.tests.test_units.TestDataArray ‑ test_stacking_reordering[float64-method_rank]
xarray.tests.test_units.TestDataArray ‑ test_stacking_reordering[int32-method_rank]
xarray.tests.test_units.TestDataArray ‑ test_stacking_reordering[int64-method_rank]
xarray.tests.test_units.TestDataArray ‑ test_to_unstacked_dataset[float64]
xarray.tests.test_units.TestDataArray ‑ test_to_unstacked_dataset[int32]
xarray.tests.test_units.TestDataArray ‑ test_to_unstacked_dataset[int64]
xarray.tests.test_units.TestDataset ‑ test_broadcast_like[float64-dims-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_broadcast_like[float64-dims-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_broadcast_like[float64-dims-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_broadcast_like[float64-dims-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_broadcast_like[float64-dims-no_unit]
xarray.tests.test_units.TestDataset ‑ test_broadcast_like[int32-dims-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_broadcast_like[int32-dims-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_broadcast_like[int32-dims-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_broadcast_like[int32-dims-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_broadcast_like[int32-dims-no_unit]
xarray.tests.test_units.TestDataset ‑ test_broadcast_like[int64-dims-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_broadcast_like[int64-dims-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_broadcast_like[int64-dims-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_broadcast_like[int64-dims-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_broadcast_like[int64-dims-no_unit]
xarray.tests.test_units.TestDataset ‑ test_combine_first[float64-dims-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_combine_first[float64-dims-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_combine_first[float64-dims-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_combine_first[float64-dims-no_unit]
xarray.tests.test_units.TestDataset ‑ test_combine_first[float64-dims-same_unit]
xarray.tests.test_units.TestDataset ‑ test_combine_first[int32-dims-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_combine_first[int32-dims-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_combine_first[int32-dims-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_combine_first[int32-dims-no_unit]
xarray.tests.test_units.TestDataset ‑ test_combine_first[int32-dims-same_unit]
xarray.tests.test_units.TestDataset ‑ test_combine_first[int64-dims-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_combine_first[int64-dims-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_combine_first[int64-dims-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_combine_first[int64-dims-no_unit]
xarray.tests.test_units.TestDataset ‑ test_combine_first[int64-dims-same_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_equals-dims-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_equals-dims-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_equals-dims-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_equals-dims-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_equals-dims-no_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_identical-coords-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_identical-coords-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_identical-coords-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_identical-coords-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_identical-coords-no_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_identical-data-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_identical-data-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_identical-data-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_identical-data-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_identical-data-no_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_identical-dims-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_identical-dims-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_identical-dims-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_identical-dims-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[float64-method_identical-dims-no_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_equals-dims-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_equals-dims-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_equals-dims-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_equals-dims-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_equals-dims-no_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_identical-coords-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_identical-coords-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_identical-coords-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_identical-coords-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_identical-coords-no_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_identical-data-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_identical-data-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_identical-data-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_identical-data-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_identical-data-no_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_identical-dims-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_identical-dims-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_identical-dims-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_identical-dims-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int32-method_identical-dims-no_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_equals-dims-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_equals-dims-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_equals-dims-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_equals-dims-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_equals-dims-no_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_identical-coords-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_identical-coords-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_identical-coords-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_identical-coords-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_identical-coords-no_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_identical-data-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_identical-data-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_identical-data-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_identical-data-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_identical-data-no_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_identical-dims-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_identical-dims-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_identical-dims-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_identical-dims-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_comparisons[int64-method_identical-dims-no_unit]
xarray.tests.test_units.TestDataset ‑ test_computation[float64-dims-method_diff]
xarray.tests.test_units.TestDataset ‑ test_computation[float64-dims-method_differentiate]
xarray.tests.test_units.TestDataset ‑ test_computation[float64-dims-method_integrate]
xarray.tests.test_units.TestDataset ‑ test_computation[float64-dims-method_map]
xarray.tests.test_units.TestDataset ‑ test_computation[float64-dims-method_quantile]
xarray.tests.test_units.TestDataset ‑ test_computation[float64-dims-method_reduce]
xarray.tests.test_units.TestDataset ‑ test_computation[int32-dims-method_diff]
xarray.tests.test_units.TestDataset ‑ test_computation[int32-dims-method_differentiate]
xarray.tests.test_units.TestDataset ‑ test_computation[int32-dims-method_integrate]
xarray.tests.test_units.TestDataset ‑ test_computation[int32-dims-method_map]
xarray.tests.test_units.TestDataset ‑ test_computation[int32-dims-method_quantile]
xarray.tests.test_units.TestDataset ‑ test_computation[int32-dims-method_reduce]
xarray.tests.test_units.TestDataset ‑ test_computation[int64-dims-method_diff]
xarray.tests.test_units.TestDataset ‑ test_computation[int64-dims-method_differentiate]
xarray.tests.test_units.TestDataset ‑ test_computation[int64-dims-method_integrate]
xarray.tests.test_units.TestDataset ‑ test_computation[int64-dims-method_map]
xarray.tests.test_units.TestDataset ‑ test_computation[int64-dims-method_quantile]
xarray.tests.test_units.TestDataset ‑ test_computation[int64-dims-method_reduce]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[float64-data-method_rolling]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[float64-data-method_rolling_exp]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[float64-dims-method_coarsen]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[float64-dims-method_groupby]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[float64-dims-method_groupby_bins]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[float64-dims-method_rolling]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[float64-dims-method_rolling_exp]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[float64-dims-method_weighted]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[int32-data-method_rolling]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[int32-data-method_rolling_exp]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[int32-dims-method_coarsen]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[int32-dims-method_groupby]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[int32-dims-method_groupby_bins]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[int32-dims-method_rolling]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[int32-dims-method_rolling_exp]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[int32-dims-method_weighted]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[int64-data-method_rolling]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[int64-data-method_rolling_exp]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[int64-dims-method_coarsen]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[int64-dims-method_groupby]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[int64-dims-method_groupby_bins]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[int64-dims-method_rolling]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[int64-dims-method_rolling_exp]
xarray.tests.test_units.TestDataset ‑ test_computation_objects[int64-dims-method_weighted]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[float64-coords-method_expand_dims]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[float64-data-method_expand_dims]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[float64-dims-method_assign]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[float64-dims-method_assign_attrs]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[float64-dims-method_assign_coords]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[float64-dims-method_copy]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[float64-dims-method_drop_dims]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[float64-dims-method_drop_vars]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[float64-dims-method_expand_dims]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[float64-dims-method_pipe]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[float64-dims-method_rename]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[float64-dims-method_rename_dims]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[float64-dims-method_rename_vars]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[float64-dims-method_reset_coords]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[float64-dims-method_set_coords]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[float64-dims-method_swap_dims]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int32-coords-method_expand_dims]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int32-data-method_expand_dims]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int32-dims-method_assign]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int32-dims-method_assign_attrs]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int32-dims-method_assign_coords]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int32-dims-method_copy]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int32-dims-method_drop_dims]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int32-dims-method_drop_vars]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int32-dims-method_expand_dims]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int32-dims-method_pipe]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int32-dims-method_rename]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int32-dims-method_rename_dims]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int32-dims-method_rename_vars]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int32-dims-method_reset_coords]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int32-dims-method_set_coords]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int32-dims-method_swap_dims]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int64-coords-method_expand_dims]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int64-data-method_expand_dims]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int64-dims-method_assign]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int64-dims-method_assign_attrs]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int64-dims-method_assign_coords]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int64-dims-method_copy]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int64-dims-method_drop_dims]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int64-dims-method_drop_vars]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int64-dims-method_expand_dims]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int64-dims-method_pipe]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int64-dims-method_rename]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int64-dims-method_rename_dims]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int64-dims-method_rename_vars]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int64-dims-method_reset_coords]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int64-dims-method_set_coords]
xarray.tests.test_units.TestDataset ‑ test_content_manipulation[int64-dims-method_swap_dims]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[float64-compatible_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[float64-compatible_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[float64-compatible_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[float64-dimensionless-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[float64-dimensionless-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[float64-dimensionless-single_value]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[float64-identical_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[float64-identical_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[float64-identical_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[float64-incompatible_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[float64-incompatible_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[float64-incompatible_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[float64-no_units-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[float64-no_units-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[float64-no_units-single_value]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int32-compatible_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int32-compatible_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int32-compatible_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int32-dimensionless-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int32-dimensionless-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int32-dimensionless-single_value]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int32-identical_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int32-identical_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int32-identical_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int32-incompatible_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int32-incompatible_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int32-incompatible_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int32-no_units-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int32-no_units-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int32-no_units-single_value]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int64-compatible_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int64-compatible_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int64-compatible_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int64-dimensionless-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int64-dimensionless-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int64-dimensionless-single_value]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int64-identical_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int64-identical_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int64-identical_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int64-incompatible_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int64-incompatible_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int64-incompatible_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int64-no_units-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int64-no_units-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_drop_sel[int64-no_units-single_value]
xarray.tests.test_units.TestDataset ‑ test_grouped_operations[float64-dims-method_assign]
xarray.tests.test_units.TestDataset ‑ test_grouped_operations[float64-dims-method_assign_coords]
xarray.tests.test_units.TestDataset ‑ test_grouped_operations[float64-dims-method_first]
xarray.tests.test_units.TestDataset ‑ test_grouped_operations[float64-dims-method_last]
xarray.tests.test_units.TestDataset ‑ test_grouped_operations[float64-dims-method_quantile]
xarray.tests.test_units.TestDataset ‑ test_grouped_operations[int32-dims-method_assign]
xarray.tests.test_units.TestDataset ‑ test_grouped_operations[int32-dims-method_assign_coords]
xarray.tests.test_units.TestDataset ‑ test_grouped_operations[int32-dims-method_first]
xarray.tests.test_units.TestDataset ‑ test_grouped_operations[int32-dims-method_last]
xarray.tests.test_units.TestDataset ‑ test_grouped_operations[int32-dims-method_quantile]
xarray.tests.test_units.TestDataset ‑ test_grouped_operations[int64-dims-method_assign]
xarray.tests.test_units.TestDataset ‑ test_grouped_operations[int64-dims-method_assign_coords]
xarray.tests.test_units.TestDataset ‑ test_grouped_operations[int64-dims-method_first]
xarray.tests.test_units.TestDataset ‑ test_grouped_operations[int64-dims-method_last]
xarray.tests.test_units.TestDataset ‑ test_grouped_operations[int64-dims-method_quantile]
xarray.tests.test_units.TestDataset ‑ test_head_tail_thin[float64-dims-method_head]
xarray.tests.test_units.TestDataset ‑ test_head_tail_thin[float64-dims-method_tail]
xarray.tests.test_units.TestDataset ‑ test_head_tail_thin[float64-dims-method_thin]
xarray.tests.test_units.TestDataset ‑ test_head_tail_thin[int32-dims-method_head]
xarray.tests.test_units.TestDataset ‑ test_head_tail_thin[int32-dims-method_tail]
xarray.tests.test_units.TestDataset ‑ test_head_tail_thin[int32-dims-method_thin]
xarray.tests.test_units.TestDataset ‑ test_head_tail_thin[int64-dims-method_head]
xarray.tests.test_units.TestDataset ‑ test_head_tail_thin[int64-dims-method_tail]
xarray.tests.test_units.TestDataset ‑ test_head_tail_thin[int64-dims-method_thin]
xarray.tests.test_units.TestDataset ‑ test_init[float64-dims-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_init[float64-dims-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_init[float64-dims-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_init[float64-dims-no_unit]
xarray.tests.test_units.TestDataset ‑ test_init[float64-dims-same_unit]
xarray.tests.test_units.TestDataset ‑ test_init[int32-dims-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_init[int32-dims-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_init[int32-dims-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_init[int32-dims-no_unit]
xarray.tests.test_units.TestDataset ‑ test_init[int32-dims-same_unit]
xarray.tests.test_units.TestDataset ‑ test_init[int64-dims-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_init[int64-dims-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_init[int64-dims-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_init[int64-dims-no_unit]
xarray.tests.test_units.TestDataset ‑ test_init[int64-dims-same_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex[float64-method_interp-coords]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex[float64-method_interp-data]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex[int32-method_interp-coords]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex[int32-method_interp-data]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex[int64-method_interp-coords]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex[int64-method_interp-data]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[float64-method_interp-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[float64-method_interp-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[float64-method_interp-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[float64-method_interp-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[float64-method_interp-no_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[float64-method_reindex-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[float64-method_reindex-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[float64-method_reindex-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[float64-method_reindex-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[float64-method_reindex-no_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int32-method_interp-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int32-method_interp-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int32-method_interp-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int32-method_interp-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int32-method_interp-no_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int32-method_reindex-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int32-method_reindex-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int32-method_reindex-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int32-method_reindex-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int32-method_reindex-no_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int64-method_interp-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int64-method_interp-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int64-method_interp-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int64-method_interp-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int64-method_interp-no_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int64-method_reindex-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int64-method_reindex-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int64-method_reindex-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int64-method_reindex-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_indexing[int64-method_reindex-no_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like[float64-method_interp_like-coords]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like[float64-method_interp_like-data]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like[int32-method_interp_like-coords]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like[int32-method_interp_like-data]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like[int64-method_interp_like-coords]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like[int64-method_interp_like-data]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[float64-method_interp_like-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[float64-method_interp_like-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[float64-method_interp_like-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[float64-method_interp_like-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[float64-method_interp_like-no_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[float64-method_reindex_like-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[float64-method_reindex_like-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[float64-method_reindex_like-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[float64-method_reindex_like-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[float64-method_reindex_like-no_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int32-method_interp_like-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int32-method_interp_like-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int32-method_interp_like-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int32-method_interp_like-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int32-method_interp_like-no_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int32-method_reindex_like-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int32-method_reindex_like-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int32-method_reindex_like-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int32-method_reindex_like-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int32-method_reindex_like-no_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int64-method_interp_like-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int64-method_interp_like-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int64-method_interp_like-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int64-method_interp_like-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int64-method_interp_like-no_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int64-method_reindex_like-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int64-method_reindex_like-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int64-method_reindex_like-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int64-method_reindex_like-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_interp_reindex_like_indexing[int64-method_reindex_like-no_unit]
xarray.tests.test_units.TestDataset ‑ test_interpolate_na[float64]
xarray.tests.test_units.TestDataset ‑ test_interpolate_na[int32]
xarray.tests.test_units.TestDataset ‑ test_interpolate_na[int64]
xarray.tests.test_units.TestDataset ‑ test_loc[float64-compatible_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[float64-compatible_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[float64-compatible_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_loc[float64-dimensionless-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[float64-dimensionless-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[float64-dimensionless-single_value]
xarray.tests.test_units.TestDataset ‑ test_loc[float64-identical_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[float64-identical_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[float64-identical_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_loc[float64-incompatible_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[float64-incompatible_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[float64-incompatible_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_loc[float64-no_units-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[float64-no_units-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[float64-no_units-single_value]
xarray.tests.test_units.TestDataset ‑ test_loc[int32-compatible_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int32-compatible_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int32-compatible_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_loc[int32-dimensionless-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int32-dimensionless-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int32-dimensionless-single_value]
xarray.tests.test_units.TestDataset ‑ test_loc[int32-identical_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int32-identical_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int32-identical_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_loc[int32-incompatible_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int32-incompatible_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int32-incompatible_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_loc[int32-no_units-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int32-no_units-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int32-no_units-single_value]
xarray.tests.test_units.TestDataset ‑ test_loc[int64-compatible_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int64-compatible_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int64-compatible_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_loc[int64-dimensionless-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int64-dimensionless-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int64-dimensionless-single_value]
xarray.tests.test_units.TestDataset ‑ test_loc[int64-identical_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int64-identical_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int64-identical_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_loc[int64-incompatible_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int64-incompatible_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int64-incompatible_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_loc[int64-no_units-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int64-no_units-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_loc[int64-no_units-single_value]
xarray.tests.test_units.TestDataset ‑ test_merge[float64-dims-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_merge[float64-dims-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_merge[float64-dims-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_merge[float64-dims-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_merge[float64-dims-no_unit]
xarray.tests.test_units.TestDataset ‑ test_merge[int32-dims-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_merge[int32-dims-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_merge[int32-dims-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_merge[int32-dims-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_merge[int32-dims-no_unit]
xarray.tests.test_units.TestDataset ‑ test_merge[int64-dims-compatible_unit]
xarray.tests.test_units.TestDataset ‑ test_merge[int64-dims-dimensionless]
xarray.tests.test_units.TestDataset ‑ test_merge[int64-dims-identical_unit]
xarray.tests.test_units.TestDataset ‑ test_merge[int64-dims-incompatible_unit]
xarray.tests.test_units.TestDataset ‑ test_merge[int64-dims-no_unit]
xarray.tests.test_units.TestDataset ‑ test_missing_value_filling[float64-method_bfill]
xarray.tests.test_units.TestDataset ‑ test_missing_value_filling[float64-method_ffill]
xarray.tests.test_units.TestDataset ‑ test_missing_value_filling[int32-method_bfill]
xarray.tests.test_units.TestDataset ‑ test_missing_value_filling[int32-method_ffill]
xarray.tests.test_units.TestDataset ‑ test_missing_value_filling[int64-method_bfill]
xarray.tests.test_units.TestDataset ‑ test_missing_value_filling[int64-method_ffill]
xarray.tests.test_units.TestDataset ‑ test_repr[float64-dims-repr]
xarray.tests.test_units.TestDataset ‑ test_repr[float64-dims-str]
xarray.tests.test_units.TestDataset ‑ test_repr[int32-dims-repr]
xarray.tests.test_units.TestDataset ‑ test_repr[int32-dims-str]
xarray.tests.test_units.TestDataset ‑ test_repr[int64-dims-repr]
xarray.tests.test_units.TestDataset ‑ test_repr[int64-dims-str]
xarray.tests.test_units.TestDataset ‑ test_resample[float64-dims]
xarray.tests.test_units.TestDataset ‑ test_resample[int32-dims]
xarray.tests.test_units.TestDataset ‑ test_resample[int64-dims]
xarray.tests.test_units.TestDataset ‑ test_sel[float64-compatible_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[float64-compatible_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[float64-compatible_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_sel[float64-dimensionless-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[float64-dimensionless-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[float64-dimensionless-single_value]
xarray.tests.test_units.TestDataset ‑ test_sel[float64-identical_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[float64-identical_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[float64-identical_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_sel[float64-incompatible_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[float64-incompatible_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[float64-incompatible_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_sel[float64-no_units-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[float64-no_units-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[float64-no_units-single_value]
xarray.tests.test_units.TestDataset ‑ test_sel[int32-compatible_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int32-compatible_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int32-compatible_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_sel[int32-dimensionless-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int32-dimensionless-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int32-dimensionless-single_value]
xarray.tests.test_units.TestDataset ‑ test_sel[int32-identical_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int32-identical_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int32-identical_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_sel[int32-incompatible_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int32-incompatible_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int32-incompatible_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_sel[int32-no_units-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int32-no_units-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int32-no_units-single_value]
xarray.tests.test_units.TestDataset ‑ test_sel[int64-compatible_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int64-compatible_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int64-compatible_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_sel[int64-dimensionless-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int64-dimensionless-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int64-dimensionless-single_value]
xarray.tests.test_units.TestDataset ‑ test_sel[int64-identical_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int64-identical_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int64-identical_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_sel[int64-incompatible_unit-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int64-incompatible_unit-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int64-incompatible_unit-single_value]
xarray.tests.test_units.TestDataset ‑ test_sel[int64-no_units-array_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int64-no_units-list_of_values]
xarray.tests.test_units.TestDataset ‑ test_sel[int64-no_units-single_value]
xarray.tests.test_units.TestDataset ‑ test_stacking_reordering[float64-method_rank]
xarray.tests.test_units.TestDataset ‑ test_stacking_reordering[int32-method_rank]
xarray.tests.test_units.TestDataset ‑ test_stacking_reordering[int64-method_rank]
xarray.tests.test_units.TestDataset ‑ test_stacking_stacked[float64-dims-method_reorder_levels]
xarray.tests.test_units.TestDataset ‑ test_stacking_stacked[float64-dims-method_reset_index]
xarray.tests.test_units.TestDataset ‑ test_stacking_stacked[float64-dims-method_unstack]
xarray.tests.test_units.TestDataset ‑ test_stacking_stacked[int32-dims-method_reorder_levels]
xarray.tests.test_units.TestDataset ‑ test_stacking_stacked[int32-dims-method_reset_index]
xarray.tests.test_units.TestDataset ‑ test_stacking_stacked[int32-dims-method_unstack]
xarray.tests.test_units.TestDataset ‑ test_stacking_stacked[int64-dims-method_reorder_levels]
xarray.tests.test_units.TestDataset ‑ test_stacking_stacked[int64-dims-method_reset_index]
xarray.tests.test_units.TestDataset ‑ test_stacking_stacked[int64-dims-method_unstack]
xarray.tests.test_units.TestDataset ‑ test_to_stacked_array[float64]
xarray.tests.test_units.TestDataset ‑ test_to_stacked_array[int32]
xarray.tests.test_units.TestDataset ‑ test_to_stacked_array[int64]
xarray.tests.test_units.TestPlots ‑ test_units_in_line_plot_labels[coord_unit1-coord_attrs1]
xarray.tests.test_units.TestPlots ‑ test_units_in_slice_line_plot_labels_isel[coord_unit1-coord_attrs1]
xarray.tests.test_units.TestPlots ‑ test_units_in_slice_line_plot_labels_sel[coord_unit1-coord_attrs1]
xarray.tests.test_units.TestVariable ‑ test_comparisons[float64-method_identical-no_conversion-compatible_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[float64-method_identical-no_conversion-dimensionless]
xarray.tests.test_units.TestVariable ‑ test_comparisons[float64-method_identical-no_conversion-identical_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[float64-method_identical-no_conversion-incompatible_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[float64-method_identical-no_conversion-no_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[float64-method_identical-with_conversion-compatible_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[float64-method_identical-with_conversion-dimensionless]
xarray.tests.test_units.TestVariable ‑ test_comparisons[float64-method_identical-with_conversion-identical_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[float64-method_identical-with_conversion-incompatible_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[float64-method_identical-with_conversion-no_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int32-method_identical-no_conversion-compatible_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int32-method_identical-no_conversion-dimensionless]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int32-method_identical-no_conversion-identical_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int32-method_identical-no_conversion-incompatible_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int32-method_identical-no_conversion-no_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int32-method_identical-with_conversion-compatible_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int32-method_identical-with_conversion-dimensionless]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int32-method_identical-with_conversion-identical_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int32-method_identical-with_conversion-incompatible_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int32-method_identical-with_conversion-no_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int64-method_identical-no_conversion-compatible_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int64-method_identical-no_conversion-dimensionless]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int64-method_identical-no_conversion-identical_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int64-method_identical-no_conversion-incompatible_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int64-method_identical-no_conversion-no_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int64-method_identical-with_conversion-compatible_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int64-method_identical-with_conversion-dimensionless]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int64-method_identical-with_conversion-identical_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int64-method_identical-with_conversion-incompatible_unit]
xarray.tests.test_units.TestVariable ‑ test_comparisons[int64-method_identical-with_conversion-no_unit]
xarray.tests.test_units.TestVariable ‑ test_computation[float64-method_rank]
xarray.tests.test_units.TestVariable ‑ test_computation[int32-method_rank]
xarray.tests.test_units.TestVariable ‑ test_computation[int64-method_rank]
xarray.tests.test_variable.TestIndexVariable ‑ test_coarsen_2d
xarray.tests.test_variable.TestIndexVariable ‑ test_getitem_advanced
xarray.tests.test_variable.TestIndexVariable ‑ test_getitem_error
xarray.tests.test_variable.TestIndexVariable ‑ test_getitem_fancy
xarray.tests.test_variable.TestIndexVariable ‑ test_getitem_uint
xarray.tests.test_variable.TestIndexVariable ‑ test_nd_rolling
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg0-np_arg0-edge]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg0-np_arg0-linear_ramp]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg0-np_arg0-maximum]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg0-np_arg0-mean]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg0-np_arg0-median]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg0-np_arg0-minimum]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg0-np_arg0-reflect]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg0-np_arg0-symmetric]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg0-np_arg0-wrap]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg1-np_arg1-edge]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg1-np_arg1-linear_ramp]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg1-np_arg1-maximum]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg1-np_arg1-mean]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg1-np_arg1-median]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg1-np_arg1-minimum]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg1-np_arg1-reflect]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg1-np_arg1-symmetric]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg1-np_arg1-wrap]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg2-np_arg2-edge]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg2-np_arg2-linear_ramp]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg2-np_arg2-maximum]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg2-np_arg2-mean]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg2-np_arg2-median]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg2-np_arg2-minimum]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg2-np_arg2-reflect]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg2-np_arg2-symmetric]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg2-np_arg2-wrap]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg3-np_arg3-edge]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg3-np_arg3-linear_ramp]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg3-np_arg3-maximum]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg3-np_arg3-mean]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg3-np_arg3-median]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg3-np_arg3-minimum]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg3-np_arg3-reflect]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg3-np_arg3-symmetric]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg3-np_arg3-wrap]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg4-np_arg4-edge]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg4-np_arg4-linear_ramp]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg4-np_arg4-maximum]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg4-np_arg4-mean]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg4-np_arg4-median]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg4-np_arg4-minimum]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg4-np_arg4-reflect]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg4-np_arg4-symmetric]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad[xr_arg4-np_arg4-wrap]
xarray.tests.test_variable.TestIndexVariable ‑ test_pad_constant_values
xarray.tests.test_variable.TestIndexVariable ‑ test_rolling_1d
xarray.tests.test_variable.TestIndexVariable ‑ test_rolling_window
xarray.tests.test_variable.TestIndexVariable ‑ test_rolling_window_errors
xarray.tests.test_variable.TestIndexVariable ‑ test_timedelta64_valid_range
xarray.tests.test_variable.TestNumpyCoercion ‑ test_from_cupy[IndexVariable]
xarray.tests.test_variable.TestNumpyCoercion ‑ test_from_cupy[Variable]
xarray.tests.test_variable.TestNumpyCoercion ‑ test_from_sparse[IndexVariable]
xarray.tests.test_variable.TestVariable ‑ test_timedelta64_valid_range
xarray.tests.test_variable.TestVariableWithDask ‑ test_0d_object_array_with_list
xarray.tests.test_variable.TestVariableWithDask ‑ test_array_interface
xarray.tests.test_variable.TestVariableWithDask ‑ test_copy_index
xarray.tests.test_variable.TestVariableWithDask ‑ test_pad[xr_arg0-np_arg0-median]
xarray.tests.test_variable.TestVariableWithDask ‑ test_pad[xr_arg1-np_arg1-median]
xarray.tests.test_variable.TestVariableWithDask ‑ test_pad[xr_arg2-np_arg2-median]
xarray.tests.test_variable.TestVariableWithDask ‑ test_pad[xr_arg2-np_arg2-reflect]
xarray.tests.test_variable.TestVariableWithDask ‑ test_pad[xr_arg3-np_arg3-median]
xarray.tests.test_variable.TestVariableWithDask ‑ test_pad[xr_arg3-np_arg3-reflect]
xarray.tests.test_variable.TestVariableWithDask ‑ test_pad[xr_arg4-np_arg4-median]
xarray.tests.test_variable.TestVariableWithDask ‑ test_pad[xr_arg4-np_arg4-reflect]
xarray.tests.test_variable.TestVariableWithDask ‑ test_timedelta64_valid_range
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[hazen-False-0.5-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[hazen-False-0.5-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[hazen-False-0.5-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[hazen-False-q1-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[hazen-False-q1-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[hazen-False-q1-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[hazen-True-0.5-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[hazen-True-0.5-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[hazen-True-0.5-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[hazen-True-q1-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[hazen-True-q1-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[hazen-True-q1-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[interpolated_inverted_cdf-False-0.5-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[interpolated_inverted_cdf-False-0.5-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[interpolated_inverted_cdf-False-0.5-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[interpolated_inverted_cdf-False-q1-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[interpolated_inverted_cdf-False-q1-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[interpolated_inverted_cdf-False-q1-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[interpolated_inverted_cdf-True-0.5-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[interpolated_inverted_cdf-True-0.5-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[interpolated_inverted_cdf-True-0.5-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[interpolated_inverted_cdf-True-q1-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[interpolated_inverted_cdf-True-q1-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[interpolated_inverted_cdf-True-q1-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[linear-False-0.5-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[linear-False-0.5-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[linear-False-0.5-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[linear-False-q1-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[linear-False-q1-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[linear-False-q1-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[linear-True-0.5-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[linear-True-0.5-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[linear-True-0.5-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[linear-True-q1-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[linear-True-q1-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[linear-True-q1-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[median_unbiased-False-0.5-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[median_unbiased-False-0.5-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[median_unbiased-False-0.5-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[median_unbiased-False-q1-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[median_unbiased-False-q1-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[median_unbiased-False-q1-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[median_unbiased-True-0.5-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[median_unbiased-True-0.5-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[median_unbiased-True-0.5-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[median_unbiased-True-q1-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[median_unbiased-True-q1-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[median_unbiased-True-q1-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[normal_unbiased2-False-0.5-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[normal_unbiased2-False-0.5-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[normal_unbiased2-False-0.5-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[normal_unbiased2-False-q1-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[normal_unbiased2-False-q1-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[normal_unbiased2-False-q1-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[normal_unbiased2-True-0.5-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[normal_unbiased2-True-0.5-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[normal_unbiased2-True-0.5-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[normal_unbiased2-True-q1-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[normal_unbiased2-True-q1-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[normal_unbiased2-True-q1-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[weibull-False-0.5-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[weibull-False-0.5-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[weibull-False-0.5-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[weibull-False-q1-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[weibull-False-q1-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[weibull-False-q1-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[weibull-True-0.5-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[weibull-True-0.5-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[weibull-True-0.5-da2]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[weibull-True-q1-da0]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[weibull-True-q1-da1]
xarray.tests.test_weighted ‑ test_weighted_quantile_equal_weights_all_methods[weibull-True-q1-da2]

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

18042 tests found (test 1 to 857)

There are 18042 tests, see "Raw output" for the list of tests 1 to 857.
Raw output
properties.test_encode_decode ‑ test_CFMask_coder_roundtrip
properties.test_encode_decode ‑ test_CFScaleOffset_coder_roundtrip
properties.test_pandas_roundtrip ‑ test_roundtrip_dataarray
properties.test_pandas_roundtrip ‑ test_roundtrip_dataset
properties.test_pandas_roundtrip ‑ test_roundtrip_pandas_dataframe
properties.test_pandas_roundtrip ‑ test_roundtrip_pandas_series
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_2d
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_accessor_method[ceil-D]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_accessor_method[floor-D]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_accessor_method[round-D]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_calendar
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_field_access[date]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[day]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[dayofweek]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[dayofyear]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[days_in_month]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[daysinmonth]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[hour]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[is_leap_year]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[is_month_end]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[is_month_start]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[is_quarter_end]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[is_quarter_start]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[is_year_end]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[is_year_start]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[microsecond]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[minute]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[month]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[nanosecond]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[quarter]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[second]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[time]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[week]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[weekday]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[weekofyear]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_field_access[year]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_isocalendar[week-week]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_isocalendar[weekday-day]
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_isocalendar[year-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.TestDatetimeAccessor ‑ test_not_datetime_type
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_seasons
xarray.tests.test_accessor_dt.TestDatetimeAccessor ‑ test_strftime
xarray.tests.test_accessor_dt.TestTimedeltaAccessor ‑ test_accessor_methods[ceil-D]
xarray.tests.test_accessor_dt.TestTimedeltaAccessor ‑ test_accessor_methods[floor-D]
xarray.tests.test_accessor_dt.TestTimedeltaAccessor ‑ test_accessor_methods[round-D]
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_dt.TestTimedeltaAccessor ‑ test_field_access[days]
xarray.tests.test_accessor_dt.TestTimedeltaAccessor ‑ test_field_access[microseconds]
xarray.tests.test_accessor_dt.TestTimedeltaAccessor ‑ test_field_access[nanoseconds]
xarray.tests.test_accessor_dt.TestTimedeltaAccessor ‑ test_field_access[seconds]
xarray.tests.test_accessor_dt.TestTimedeltaAccessor ‑ test_not_datetime_type
xarray.tests.test_accessor_str ‑ test_case_bytes
xarray.tests.test_accessor_str ‑ test_case_str
xarray.tests.test_accessor_str ‑ test_cat_broadcast_both[bytes]
xarray.tests.test_accessor_str ‑ test_cat_broadcast_both[str]
xarray.tests.test_accessor_str ‑ test_cat_broadcast_left[bytes]
xarray.tests.test_accessor_str ‑ test_cat_broadcast_left[str]
xarray.tests.test_accessor_str ‑ test_cat_broadcast_right[bytes]
xarray.tests.test_accessor_str ‑ test_cat_broadcast_right[str]
xarray.tests.test_accessor_str ‑ test_cat_multi
xarray.tests.test_accessor_str ‑ test_cat_str[bytes]
xarray.tests.test_accessor_str ‑ test_cat_str[str]
xarray.tests.test_accessor_str ‑ test_cat_uniform[bytes]
xarray.tests.test_accessor_str ‑ test_cat_uniform[str]
xarray.tests.test_accessor_str ‑ test_contains[bytes]
xarray.tests.test_accessor_str ‑ test_contains[str]
xarray.tests.test_accessor_str ‑ test_contains_broadcast[bytes]
xarray.tests.test_accessor_str ‑ test_contains_broadcast[str]
xarray.tests.test_accessor_str ‑ test_count[bytes]
xarray.tests.test_accessor_str ‑ test_count[str]
xarray.tests.test_accessor_str ‑ test_count_broadcast[bytes]
xarray.tests.test_accessor_str ‑ test_count_broadcast[str]
xarray.tests.test_accessor_str ‑ test_dask
xarray.tests.test_accessor_str ‑ test_empty_str_methods
xarray.tests.test_accessor_str ‑ test_encode_decode
xarray.tests.test_accessor_str ‑ test_encode_decode_errors
xarray.tests.test_accessor_str ‑ test_extract_broadcast[bytes]
xarray.tests.test_accessor_str ‑ test_extract_broadcast[str]
xarray.tests.test_accessor_str ‑ test_extract_extractall_findall_case_re_raises[bytes]
xarray.tests.test_accessor_str ‑ test_extract_extractall_findall_case_re_raises[str]
xarray.tests.test_accessor_str ‑ test_extract_extractall_findall_empty_raises[bytes]
xarray.tests.test_accessor_str ‑ test_extract_extractall_findall_empty_raises[str]
xarray.tests.test_accessor_str ‑ test_extract_extractall_name_collision_raises[bytes]
xarray.tests.test_accessor_str ‑ test_extract_extractall_name_collision_raises[str]
xarray.tests.test_accessor_str ‑ test_extract_multi_None_raises[bytes]
xarray.tests.test_accessor_str ‑ test_extract_multi_None_raises[str]
xarray.tests.test_accessor_str ‑ test_extract_multi_case[bytes]
xarray.tests.test_accessor_str ‑ test_extract_multi_case[str]
xarray.tests.test_accessor_str ‑ test_extract_multi_nocase[bytes]
xarray.tests.test_accessor_str ‑ test_extract_multi_nocase[str]
xarray.tests.test_accessor_str ‑ test_extract_single_case[bytes]
xarray.tests.test_accessor_str ‑ test_extract_single_case[str]
xarray.tests.test_accessor_str ‑ test_extract_single_nocase[bytes]
xarray.tests.test_accessor_str ‑ test_extract_single_nocase[str]
xarray.tests.test_accessor_str ‑ test_extractall_broadcast[bytes]
xarray.tests.test_accessor_str ‑ test_extractall_broadcast[str]
xarray.tests.test_accessor_str ‑ test_extractall_multi_multi_case[bytes]
xarray.tests.test_accessor_str ‑ test_extractall_multi_multi_case[str]
xarray.tests.test_accessor_str ‑ test_extractall_multi_multi_nocase[bytes]
xarray.tests.test_accessor_str ‑ test_extractall_multi_multi_nocase[str]
xarray.tests.test_accessor_str ‑ test_extractall_multi_single_case[bytes]
xarray.tests.test_accessor_str ‑ test_extractall_multi_single_case[str]
xarray.tests.test_accessor_str ‑ test_extractall_multi_single_nocase[bytes]
xarray.tests.test_accessor_str ‑ test_extractall_multi_single_nocase[str]
xarray.tests.test_accessor_str ‑ test_extractall_single_multi_case[bytes]
xarray.tests.test_accessor_str ‑ test_extractall_single_multi_case[str]
xarray.tests.test_accessor_str ‑ test_extractall_single_multi_nocase[bytes]
xarray.tests.test_accessor_str ‑ test_extractall_single_multi_nocase[str]
xarray.tests.test_accessor_str ‑ test_extractall_single_single_case[bytes]
xarray.tests.test_accessor_str ‑ test_extractall_single_single_case[str]
xarray.tests.test_accessor_str ‑ test_extractall_single_single_nocase[bytes]
xarray.tests.test_accessor_str ‑ test_extractall_single_single_nocase[str]
xarray.tests.test_accessor_str ‑ test_find[bytes]
xarray.tests.test_accessor_str ‑ test_find[str]
xarray.tests.test_accessor_str ‑ test_find_broadcast[bytes]
xarray.tests.test_accessor_str ‑ test_find_broadcast[str]
xarray.tests.test_accessor_str ‑ test_findall_broadcast[bytes]
xarray.tests.test_accessor_str ‑ test_findall_broadcast[str]
xarray.tests.test_accessor_str ‑ test_findall_multi_multi_case[bytes]
xarray.tests.test_accessor_str ‑ test_findall_multi_multi_case[str]
xarray.tests.test_accessor_str ‑ test_findall_multi_multi_nocase[bytes]
xarray.tests.test_accessor_str ‑ test_findall_multi_multi_nocase[str]
xarray.tests.test_accessor_str ‑ test_findall_multi_single_case[bytes]
xarray.tests.test_accessor_str ‑ test_findall_multi_single_case[str]
xarray.tests.test_accessor_str ‑ test_findall_multi_single_nocase[bytes]
xarray.tests.test_accessor_str ‑ test_findall_multi_single_nocase[str]
xarray.tests.test_accessor_str ‑ test_findall_single_multi_case[bytes]
xarray.tests.test_accessor_str ‑ test_findall_single_multi_case[str]
xarray.tests.test_accessor_str ‑ test_findall_single_multi_nocase[bytes]
xarray.tests.test_accessor_str ‑ test_findall_single_multi_nocase[str]
xarray.tests.test_accessor_str ‑ test_findall_single_single_case[bytes]
xarray.tests.test_accessor_str ‑ test_findall_single_single_case[str]
xarray.tests.test_accessor_str ‑ test_findall_single_single_nocase[bytes]
xarray.tests.test_accessor_str ‑ test_findall_single_single_nocase[str]
xarray.tests.test_accessor_str ‑ test_format_broadcast
xarray.tests.test_accessor_str ‑ test_format_scalar
xarray.tests.test_accessor_str ‑ test_get[bytes]
xarray.tests.test_accessor_str ‑ test_get[str]
xarray.tests.test_accessor_str ‑ test_get_broadcast[bytes]
xarray.tests.test_accessor_str ‑ test_get_broadcast[str]
xarray.tests.test_accessor_str ‑ test_get_default[bytes]
xarray.tests.test_accessor_str ‑ test_get_default[str]
xarray.tests.test_accessor_str ‑ test_get_dummies[bytes]
xarray.tests.test_accessor_str ‑ test_get_dummies[str]
xarray.tests.test_accessor_str ‑ test_get_dummies_broadcast[bytes]
xarray.tests.test_accessor_str ‑ test_get_dummies_broadcast[str]
xarray.tests.test_accessor_str ‑ test_get_dummies_empty[bytes]
xarray.tests.test_accessor_str ‑ test_get_dummies_empty[str]
xarray.tests.test_accessor_str ‑ test_index[bytes]
xarray.tests.test_accessor_str ‑ test_index[str]
xarray.tests.test_accessor_str ‑ test_index_broadcast[bytes]
xarray.tests.test_accessor_str ‑ test_index_broadcast[str]
xarray.tests.test_accessor_str ‑ test_ismethods[bytes-isalnum]
xarray.tests.test_accessor_str ‑ test_ismethods[bytes-isalpha]
xarray.tests.test_accessor_str ‑ test_ismethods[bytes-isdigit]
xarray.tests.test_accessor_str ‑ test_ismethods[bytes-islower]
xarray.tests.test_accessor_str ‑ test_ismethods[bytes-isspace]
xarray.tests.test_accessor_str ‑ test_ismethods[bytes-istitle]
xarray.tests.test_accessor_str ‑ test_ismethods[bytes-isupper]
xarray.tests.test_accessor_str ‑ test_ismethods[str-isalnum]
xarray.tests.test_accessor_str ‑ test_ismethods[str-isalpha]
xarray.tests.test_accessor_str ‑ test_ismethods[str-isdigit]
xarray.tests.test_accessor_str ‑ test_ismethods[str-islower]
xarray.tests.test_accessor_str ‑ test_ismethods[str-isspace]
xarray.tests.test_accessor_str ‑ test_ismethods[str-istitle]
xarray.tests.test_accessor_str ‑ test_ismethods[str-isupper]
xarray.tests.test_accessor_str ‑ test_isnumeric
xarray.tests.test_accessor_str ‑ test_join_2d[bytes]
xarray.tests.test_accessor_str ‑ test_join_2d[str]
xarray.tests.test_accessor_str ‑ test_join_broadcast[bytes]
xarray.tests.test_accessor_str ‑ test_join_broadcast[str]
xarray.tests.test_accessor_str ‑ test_join_scalar[bytes]
xarray.tests.test_accessor_str ‑ test_join_scalar[str]
xarray.tests.test_accessor_str ‑ test_join_vector[bytes]
xarray.tests.test_accessor_str ‑ test_join_vector[str]
xarray.tests.test_accessor_str ‑ test_len[bytes]
xarray.tests.test_accessor_str ‑ test_len[str]
xarray.tests.test_accessor_str ‑ test_match[bytes]
xarray.tests.test_accessor_str ‑ test_match[str]
xarray.tests.test_accessor_str ‑ test_mod_broadcast_multi
xarray.tests.test_accessor_str ‑ test_mod_broadcast_single
xarray.tests.test_accessor_str ‑ test_mod_dict
xarray.tests.test_accessor_str ‑ test_mod_scalar
xarray.tests.test_accessor_str ‑ test_pad_center_ljust_rjust[bytes]
xarray.tests.test_accessor_str ‑ test_pad_center_ljust_rjust[str]
xarray.tests.test_accessor_str ‑ test_pad_center_ljust_rjust_broadcast[bytes]
xarray.tests.test_accessor_str ‑ test_pad_center_ljust_rjust_broadcast[str]
xarray.tests.test_accessor_str ‑ test_pad_center_ljust_rjust_fillchar[bytes]
xarray.tests.test_accessor_str ‑ test_pad_center_ljust_rjust_fillchar[str]
xarray.tests.test_accessor_str ‑ test_partition_comma[bytes]
xarray.tests.test_accessor_str ‑ test_partition_comma[str]
xarray.tests.test_accessor_str ‑ test_partition_empty[bytes]
xarray.tests.test_accessor_str ‑ test_partition_empty[str]
xarray.tests.test_accessor_str ‑ test_partition_whitespace[bytes]
xarray.tests.test_accessor_str ‑ test_partition_whitespace[str]
xarray.tests.test_accessor_str ‑ test_repeat[bytes]
xarray.tests.test_accessor_str ‑ test_repeat[str]
xarray.tests.test_accessor_str ‑ test_repeat_broadcast[bytes]
xarray.tests.test_accessor_str ‑ test_repeat_broadcast[str]
xarray.tests.test_accessor_str ‑ test_replace[bytes]
xarray.tests.test_accessor_str ‑ test_replace[str]
xarray.tests.test_accessor_str ‑ test_replace_callable
xarray.tests.test_accessor_str ‑ test_replace_compiled_regex[bytes]
xarray.tests.test_accessor_str ‑ test_replace_compiled_regex[str]
xarray.tests.test_accessor_str ‑ test_replace_literal[bytes]
xarray.tests.test_accessor_str ‑ test_replace_literal[str]
xarray.tests.test_accessor_str ‑ test_replace_unicode
xarray.tests.test_accessor_str ‑ test_slice[bytes]
xarray.tests.test_accessor_str ‑ test_slice[str]
xarray.tests.test_accessor_str ‑ test_slice_broadcast[bytes]
xarray.tests.test_accessor_str ‑ test_slice_broadcast[str]
xarray.tests.test_accessor_str ‑ test_slice_replace[bytes]
xarray.tests.test_accessor_str ‑ test_slice_replace[str]
xarray.tests.test_accessor_str ‑ test_slice_replace_broadcast[bytes]
xarray.tests.test_accessor_str ‑ test_slice_replace_broadcast[str]
xarray.tests.test_accessor_str ‑ test_split_comma_dim[bytes-rsplit_10]
xarray.tests.test_accessor_str ‑ test_split_comma_dim[bytes-rsplit_1]
xarray.tests.test_accessor_str ‑ test_split_comma_dim[bytes-rsplit_full]
xarray.tests.test_accessor_str ‑ test_split_comma_dim[bytes-split_10]
xarray.tests.test_accessor_str ‑ test_split_comma_dim[bytes-split_1]
xarray.tests.test_accessor_str ‑ test_split_comma_dim[bytes-split_full]
xarray.tests.test_accessor_str ‑ test_split_comma_dim[str-rsplit_10]
xarray.tests.test_accessor_str ‑ test_split_comma_dim[str-rsplit_1]
xarray.tests.test_accessor_str ‑ test_split_comma_dim[str-rsplit_full]
xarray.tests.test_accessor_str ‑ test_split_comma_dim[str-split_10]
xarray.tests.test_accessor_str ‑ test_split_comma_dim[str-split_1]
xarray.tests.test_accessor_str ‑ test_split_comma_dim[str-split_full]
xarray.tests.test_accessor_str ‑ test_split_comma_nodim[bytes-rsplit_10]
xarray.tests.test_accessor_str ‑ test_split_comma_nodim[bytes-rsplit_1]
xarray.tests.test_accessor_str ‑ test_split_comma_nodim[bytes-rsplit_full]
xarray.tests.test_accessor_str ‑ test_split_comma_nodim[bytes-split_10]
xarray.tests.test_accessor_str ‑ test_split_comma_nodim[bytes-split_1]
xarray.tests.test_accessor_str ‑ test_split_comma_nodim[bytes-split_full]
xarray.tests.test_accessor_str ‑ test_split_comma_nodim[str-rsplit_10]
xarray.tests.test_accessor_str ‑ test_split_comma_nodim[str-rsplit_1]
xarray.tests.test_accessor_str ‑ test_split_comma_nodim[str-rsplit_full]
xarray.tests.test_accessor_str ‑ test_split_comma_nodim[str-split_10]
xarray.tests.test_accessor_str ‑ test_split_comma_nodim[str-split_1]
xarray.tests.test_accessor_str ‑ test_split_comma_nodim[str-split_full]
xarray.tests.test_accessor_str ‑ test_split_empty[bytes]
xarray.tests.test_accessor_str ‑ test_split_empty[str]
xarray.tests.test_accessor_str ‑ test_split_whitespace_dim[bytes-rsplit_1]
xarray.tests.test_accessor_str ‑ test_split_whitespace_dim[bytes-rsplit_full]
xarray.tests.test_accessor_str ‑ test_split_whitespace_dim[bytes-split_1]
xarray.tests.test_accessor_str ‑ test_split_whitespace_dim[bytes-split_full]
xarray.tests.test_accessor_str ‑ test_split_whitespace_dim[str-rsplit_1]
xarray.tests.test_accessor_str ‑ test_split_whitespace_dim[str-rsplit_full]
xarray.tests.test_accessor_str ‑ test_split_whitespace_dim[str-split_1]
xarray.tests.test_accessor_str ‑ test_split_whitespace_dim[str-split_full]
xarray.tests.test_accessor_str ‑ test_split_whitespace_nodim[bytes-rsplit_1]
xarray.tests.test_accessor_str ‑ test_split_whitespace_nodim[bytes-rsplit_full]
xarray.tests.test_accessor_str ‑ test_split_whitespace_nodim[bytes-split_1]
xarray.tests.test_accessor_str ‑ test_split_whitespace_nodim[bytes-split_full]
xarray.tests.test_accessor_str ‑ test_split_whitespace_nodim[str-rsplit_1]
xarray.tests.test_accessor_str ‑ test_split_whitespace_nodim[str-rsplit_full]
xarray.tests.test_accessor_str ‑ test_split_whitespace_nodim[str-split_1]
xarray.tests.test_accessor_str ‑ test_split_whitespace_nodim[str-split_full]
xarray.tests.test_accessor_str ‑ test_splitters_broadcast[bytes]
xarray.tests.test_accessor_str ‑ test_splitters_broadcast[str]
xarray.tests.test_accessor_str ‑ test_splitters_empty_str[bytes]
xarray.tests.test_accessor_str ‑ test_splitters_empty_str[str]
xarray.tests.test_accessor_str ‑ test_starts_ends_with[bytes]
xarray.tests.test_accessor_str ‑ test_starts_ends_with[str]
xarray.tests.test_accessor_str ‑ test_starts_ends_with_broadcast[bytes]
xarray.tests.test_accessor_str ‑ test_starts_ends_with_broadcast[str]
xarray.tests.test_accessor_str ‑ test_strip_lstrip_rstrip[bytes]
xarray.tests.test_accessor_str ‑ test_strip_lstrip_rstrip[str]
xarray.tests.test_accessor_str ‑ test_strip_lstrip_rstrip_args[bytes]
xarray.tests.test_accessor_str ‑ test_strip_lstrip_rstrip_args[str]
xarray.tests.test_accessor_str ‑ test_strip_lstrip_rstrip_broadcast[bytes]
xarray.tests.test_accessor_str ‑ test_strip_lstrip_rstrip_broadcast[str]
xarray.tests.test_accessor_str ‑ test_translate
xarray.tests.test_accessor_str ‑ test_wrap
xarray.tests.test_accessor_str ‑ test_wrap_kwargs_passed
xarray.tests.test_accessor_str ‑ test_zfill[bytes]
xarray.tests.test_accessor_str ‑ test_zfill[str]
xarray.tests.test_accessor_str ‑ test_zfill_broadcast[bytes]
xarray.tests.test_accessor_str ‑ test_zfill_broadcast[str]
xarray.tests.test_array_api
xarray.tests.test_array_api ‑ test_aggregation
xarray.tests.test_array_api ‑ test_aggregation_skipna
xarray.tests.test_array_api ‑ test_arithmetic
xarray.tests.test_array_api ‑ test_astype
xarray.tests.test_array_api ‑ test_broadcast
xarray.tests.test_array_api ‑ test_concat
xarray.tests.test_array_api ‑ test_indexing
xarray.tests.test_array_api ‑ test_properties
xarray.tests.test_array_api ‑ test_reorganizing_operation
xarray.tests.test_array_api ‑ test_stack
xarray.tests.test_array_api ‑ test_where
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_invalid_netcdf_raises[netcdf4]
xarray.tests.test_backends ‑ test_invalid_netcdf_raises[scipy]
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_storage_options
xarray.tests.test_backends.TestCommon ‑ test_robust_getitem
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_h5nc_encoding
xarray.tests.test_backends.TestEncodingInvalid ‑ test_extract_nc4_variable_encoding
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_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_complex
xarray.tests.test_backends.TestH5NetCDFData ‑ test_complex_error[False]

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

18042 tests found (test 858 to 1578)

There are 18042 tests, see "Raw output" for the list of tests 858 to 1578.
Raw output
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
xarray.tests.test_backends.TestH5NetCDFData ‑ test_compression_encoding_h5py
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_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
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_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_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
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.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_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
xarray.tests.test_backends.TestH5NetCDFFileObject ‑ test_compression_encoding_h5py
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_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
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_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_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
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_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
xarray.tests.test_backends.TestH5NetCDFViaDaskData ‑ test_compression_encoding_h5py
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
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_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
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_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_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
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_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_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_compression_encoding
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_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
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_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_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
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_compression_encoding
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_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
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_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_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
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.TestPseudoNetCDFFormat ‑ test_ict_format
xarray.tests.test_backends.TestPseudoNetCDFFormat ‑ test_ict_format_write
xarray.tests.test_backends.TestPseudoNetCDFFormat ‑ test_uamiv_format_mfread
xarray.tests.test_backends.TestPseudoNetCDFFormat ‑ test_uamiv_format_read
xarray.tests.test_backends.TestPseudoNetCDFFormat ‑ test_uamiv_format_write
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_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_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

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

18042 tests found (test 1579 to 2302)

There are 18042 tests, see "Raw output" for the list of tests 1579 to 2302.
Raw output
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_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_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_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_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
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_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]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[False-False-None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[False-False-True]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[False-True-False]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[False-True-None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[False-True-True]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[True-False-False]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[True-False-None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[True-False-True]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[True-True-False]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[True-True-None]
xarray.tests.test_backends.TestZarrDictStore ‑ test_write_region[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_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_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_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]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[False-False-None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[False-False-True]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[False-True-False]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[False-True-None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[False-True-True]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[True-False-False]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[True-False-None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[True-False-True]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[True-True-False]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[True-True-None]
xarray.tests.test_backends.TestZarrDirectoryStore ‑ test_write_region[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_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_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_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]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[False-True-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-False-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[True-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3 ‑ test_write_region[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_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_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_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]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[False-True-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-False-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-False-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-False-True]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-True-False]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[True-True-None]
xarray.tests.test_backends.TestZarrDirectoryStoreV3FromPath ‑ test_write_region[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_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_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_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]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-False-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-False-True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-True-False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-True-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[False-True-True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-False-False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-False-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-False-True]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-True-False]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[True-True-None]
xarray.tests.test_backends.TestZarrKVStoreV3 ‑ test_write_region[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_api ‑ test__get_default_engine
xarray.tests.test_backends_api ‑ test_custom_engine
xarray.tests.test_backends_api ‑ test_multiindex
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_backends_common ‑ test_robust_getitem
xarray.tests.test_backends_file_manager ‑ test_file_manager_acquire_context[1]
xarray.tests.test_backends_file_manager ‑ test_file_manager_acquire_context[2]
xarray.tests.test_backends_file_manager ‑ test_file_manager_acquire_context[3]
xarray.tests.test_backends_file_manager ‑ test_file_manager_acquire_context[None]
xarray.tests.test_backends_file_manager ‑ test_file_manager_autoclose[False]
xarray.tests.test_backends_file_manager ‑ test_file_manager_autoclose[True]
xarray.tests.test_backends_file_manager ‑ test_file_manager_autoclose_while_locked
xarray.tests.test_backends_file_manager ‑ test_file_manager_cache_and_refcounts
xarray.tests.test_backends_file_manager ‑ test_file_manager_cache_repeated_open
xarray.tests.test_backends_file_manager ‑ test_file_manager_cache_with_pickle
xarray.tests.test_backends_file_manager ‑ test_file_manager_mock_write[1]
xarray.tests.test_backends_file_manager ‑ test_file_manager_mock_write[2]
xarray.tests.test_backends_file_manager ‑ test_file_manager_mock_write[3]
xarray.tests.test_backends_file_manager ‑ test_file_manager_mock_write[None]
xarray.tests.test_backends_file_manager ‑ test_file_manager_read[1]
xarray.tests.test_backends_file_manager ‑ test_file_manager_read[2]
xarray.tests.test_backends_file_manager ‑ test_file_manager_read[3]
xarray.tests.test_backends_file_manager ‑ test_file_manager_read[None]
xarray.tests.test_backends_file_manager ‑ test_file_manager_repr
xarray.tests.test_backends_file_manager ‑ test_file_manager_write_concurrent[1]
xarray.tests.test_backends_file_manager ‑ test_file_manager_write_concurrent[2]
xarray.tests.test_backends_file_manager ‑ test_file_manager_write_concurrent[3]
xarray.tests.test_backends_file_manager ‑ test_file_manager_write_concurrent[None]
xarray.tests.test_backends_file_manager ‑ test_file_manager_write_consecutive[1]
xarray.tests.test_backends_file_manager ‑ test_file_manager_write_consecutive[2]
xarray.tests.test_backends_file_manager ‑ test_file_manager_write_consecutive[3]
xarray.tests.test_backends_file_manager ‑ test_file_manager_write_consecutive[None]
xarray.tests.test_backends_file_manager ‑ test_file_manager_write_pickle[1]
xarray.tests.test_backends_file_manager ‑ test_file_manager_write_pickle[2]
xarray.tests.test_backends_file_manager ‑ test_file_manager_write_pickle[3]
xarray.tests.test_backends_file_manager ‑ test_file_manager_write_pickle[None]
xarray.tests.test_backends_locks ‑ test_threaded_lock
xarray.tests.test_backends_lru_cache ‑ test_del
xarray.tests.test_backends_lru_cache ‑ test_invalid
xarray.tests.test_backends_lru_cache ‑ test_on_evict
xarray.tests.test_backends_lru_cache ‑ test_on_evict_trivial
xarray.tests.test_backends_lru_cache ‑ test_resize
xarray.tests.test_backends_lru_cache ‑ test_simple
xarray.tests.test_backends_lru_cache ‑ test_trivial
xarray.tests.test_backends_lru_cache ‑ test_update_priority
xarray.tests.test_calendar_ops ‑ test_convert_calendar[all_leap-proleptic_gregorian-False-4H]
xarray.tests.test_calendar_ops ‑ test_convert_calendar[noleap-all_leap-None-D]
xarray.tests.test_calendar_ops ‑ test_convert_calendar[noleap-proleptic_gregorian-True-D]
xarray.tests.test_calendar_ops ‑ test_convert_calendar[standard-noleap-None-D]
xarray.tests.test_calendar_ops ‑ test_convert_calendar_360_days[date-360_day-proleptic_gregorian-D]
xarray.tests.test_calendar_ops ‑ test_convert_calendar_360_days[date-proleptic_gregorian-360_day-4H]
xarray.tests.test_calendar_ops ‑ test_convert_calendar_360_days[date-standard-360_day-D]
xarray.tests.test_calendar_ops ‑ test_convert_calendar_360_days[year-360_day-proleptic_gregorian-D]
xarray.tests.test_calendar_ops ‑ test_convert_calendar_360_days[year-proleptic_gregorian-360_day-4H]

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

18042 tests found (test 2303 to 2851)

There are 18042 tests, see "Raw output" for the list of tests 2303 to 2851.
Raw output
xarray.tests.test_calendar_ops ‑ test_convert_calendar_360_days[year-standard-360_day-D]
xarray.tests.test_calendar_ops ‑ test_convert_calendar_errors
xarray.tests.test_calendar_ops ‑ test_convert_calendar_missing[360_day-noleap-D]
xarray.tests.test_calendar_ops ‑ test_convert_calendar_missing[noleap-360_day-D]
xarray.tests.test_calendar_ops ‑ test_convert_calendar_missing[noleap-all_leap-M]
xarray.tests.test_calendar_ops ‑ test_convert_calendar_missing[noleap-proleptic_gregorian-4H]
xarray.tests.test_calendar_ops ‑ test_convert_calendar_missing[standard-noleap-D]
xarray.tests.test_calendar_ops ‑ test_convert_calendar_same_calendar
xarray.tests.test_calendar_ops ‑ test_interp_calendar[360_day-noleap]
xarray.tests.test_calendar_ops ‑ test_interp_calendar[360_day-proleptic_gregorian]
xarray.tests.test_calendar_ops ‑ test_interp_calendar[noleap-all_leap]
xarray.tests.test_calendar_ops ‑ test_interp_calendar[noleap-proleptic_gregorian]
xarray.tests.test_calendar_ops ‑ test_interp_calendar[standard-360_day]
xarray.tests.test_calendar_ops ‑ test_interp_calendar[standard-noleap]
xarray.tests.test_calendar_ops ‑ test_interp_calendar_errors
xarray.tests.test_cftime_offsets ‑ test_Microsecond_multiplied_float_error
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[360_day-(1, 1, 1)-<MonthBegin: n=1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[360_day-(1, 1, 1)-<MonthBegin: n=2>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[360_day-(1, 1, 1, 5, 5, 5, 5)-<MonthBegin: n=1>-(1, 2, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[360_day-(1, 1, 3, 5, 5, 5, 5)-<MonthBegin: n=-1>-(1, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[360_day-(1, 1, 3, 5, 5, 5, 5)-<MonthBegin: n=1>-(1, 2, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[360_day-(1, 1, 7)-<MonthBegin: n=1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[360_day-(1, 1, 7)-<MonthBegin: n=2>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[360_day-(1, 2, 1)-<MonthBegin: n=14>-(2, 4, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[360_day-(1, 3, 1)-<MonthBegin: n=-1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[360_day-(1, 3, 1)-<MonthBegin: n=-2>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[360_day-(1, 3, 3)-<MonthBegin: n=-1>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[360_day-(1, 3, 3)-<MonthBegin: n=-2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[360_day-(2, 4, 1)-<MonthBegin: n=-14>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[365_day-(1, 1, 1)-<MonthBegin: n=1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[365_day-(1, 1, 1)-<MonthBegin: n=2>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[365_day-(1, 1, 1, 5, 5, 5, 5)-<MonthBegin: n=1>-(1, 2, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[365_day-(1, 1, 3, 5, 5, 5, 5)-<MonthBegin: n=-1>-(1, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[365_day-(1, 1, 3, 5, 5, 5, 5)-<MonthBegin: n=1>-(1, 2, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[365_day-(1, 1, 7)-<MonthBegin: n=1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[365_day-(1, 1, 7)-<MonthBegin: n=2>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[365_day-(1, 2, 1)-<MonthBegin: n=14>-(2, 4, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[365_day-(1, 3, 1)-<MonthBegin: n=-1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[365_day-(1, 3, 1)-<MonthBegin: n=-2>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[365_day-(1, 3, 3)-<MonthBegin: n=-1>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[365_day-(1, 3, 3)-<MonthBegin: n=-2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[365_day-(2, 4, 1)-<MonthBegin: n=-14>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[366_day-(1, 1, 1)-<MonthBegin: n=1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[366_day-(1, 1, 1)-<MonthBegin: n=2>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[366_day-(1, 1, 1, 5, 5, 5, 5)-<MonthBegin: n=1>-(1, 2, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[366_day-(1, 1, 3, 5, 5, 5, 5)-<MonthBegin: n=-1>-(1, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[366_day-(1, 1, 3, 5, 5, 5, 5)-<MonthBegin: n=1>-(1, 2, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[366_day-(1, 1, 7)-<MonthBegin: n=1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[366_day-(1, 1, 7)-<MonthBegin: n=2>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[366_day-(1, 2, 1)-<MonthBegin: n=14>-(2, 4, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[366_day-(1, 3, 1)-<MonthBegin: n=-1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[366_day-(1, 3, 1)-<MonthBegin: n=-2>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[366_day-(1, 3, 3)-<MonthBegin: n=-1>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[366_day-(1, 3, 3)-<MonthBegin: n=-2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[366_day-(2, 4, 1)-<MonthBegin: n=-14>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[all_leap-(1, 1, 1)-<MonthBegin: n=1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[all_leap-(1, 1, 1)-<MonthBegin: n=2>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[all_leap-(1, 1, 1, 5, 5, 5, 5)-<MonthBegin: n=1>-(1, 2, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[all_leap-(1, 1, 3, 5, 5, 5, 5)-<MonthBegin: n=-1>-(1, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[all_leap-(1, 1, 3, 5, 5, 5, 5)-<MonthBegin: n=1>-(1, 2, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[all_leap-(1, 1, 7)-<MonthBegin: n=1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[all_leap-(1, 1, 7)-<MonthBegin: n=2>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[all_leap-(1, 2, 1)-<MonthBegin: n=14>-(2, 4, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[all_leap-(1, 3, 1)-<MonthBegin: n=-1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[all_leap-(1, 3, 1)-<MonthBegin: n=-2>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[all_leap-(1, 3, 3)-<MonthBegin: n=-1>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[all_leap-(1, 3, 3)-<MonthBegin: n=-2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[all_leap-(2, 4, 1)-<MonthBegin: n=-14>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[gregorian-(1, 1, 1)-<MonthBegin: n=1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[gregorian-(1, 1, 1)-<MonthBegin: n=2>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[gregorian-(1, 1, 1, 5, 5, 5, 5)-<MonthBegin: n=1>-(1, 2, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[gregorian-(1, 1, 3, 5, 5, 5, 5)-<MonthBegin: n=-1>-(1, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[gregorian-(1, 1, 3, 5, 5, 5, 5)-<MonthBegin: n=1>-(1, 2, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[gregorian-(1, 1, 7)-<MonthBegin: n=1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[gregorian-(1, 1, 7)-<MonthBegin: n=2>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[gregorian-(1, 2, 1)-<MonthBegin: n=14>-(2, 4, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[gregorian-(1, 3, 1)-<MonthBegin: n=-1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[gregorian-(1, 3, 1)-<MonthBegin: n=-2>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[gregorian-(1, 3, 3)-<MonthBegin: n=-1>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[gregorian-(1, 3, 3)-<MonthBegin: n=-2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[gregorian-(2, 4, 1)-<MonthBegin: n=-14>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[julian-(1, 1, 1)-<MonthBegin: n=1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[julian-(1, 1, 1)-<MonthBegin: n=2>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[julian-(1, 1, 1, 5, 5, 5, 5)-<MonthBegin: n=1>-(1, 2, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[julian-(1, 1, 3, 5, 5, 5, 5)-<MonthBegin: n=-1>-(1, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[julian-(1, 1, 3, 5, 5, 5, 5)-<MonthBegin: n=1>-(1, 2, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[julian-(1, 1, 7)-<MonthBegin: n=1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[julian-(1, 1, 7)-<MonthBegin: n=2>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[julian-(1, 2, 1)-<MonthBegin: n=14>-(2, 4, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[julian-(1, 3, 1)-<MonthBegin: n=-1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[julian-(1, 3, 1)-<MonthBegin: n=-2>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[julian-(1, 3, 3)-<MonthBegin: n=-1>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[julian-(1, 3, 3)-<MonthBegin: n=-2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[julian-(2, 4, 1)-<MonthBegin: n=-14>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[proleptic_gregorian-(1, 1, 1)-<MonthBegin: n=1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[proleptic_gregorian-(1, 1, 1)-<MonthBegin: n=2>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[proleptic_gregorian-(1, 1, 1, 5, 5, 5, 5)-<MonthBegin: n=1>-(1, 2, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[proleptic_gregorian-(1, 1, 3, 5, 5, 5, 5)-<MonthBegin: n=-1>-(1, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[proleptic_gregorian-(1, 1, 3, 5, 5, 5, 5)-<MonthBegin: n=1>-(1, 2, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[proleptic_gregorian-(1, 1, 7)-<MonthBegin: n=1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[proleptic_gregorian-(1, 1, 7)-<MonthBegin: n=2>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[proleptic_gregorian-(1, 2, 1)-<MonthBegin: n=14>-(2, 4, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[proleptic_gregorian-(1, 3, 1)-<MonthBegin: n=-1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[proleptic_gregorian-(1, 3, 1)-<MonthBegin: n=-2>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[proleptic_gregorian-(1, 3, 3)-<MonthBegin: n=-1>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[proleptic_gregorian-(1, 3, 3)-<MonthBegin: n=-2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[proleptic_gregorian-(2, 4, 1)-<MonthBegin: n=-14>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[standard-(1, 1, 1)-<MonthBegin: n=1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[standard-(1, 1, 1)-<MonthBegin: n=2>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[standard-(1, 1, 1, 5, 5, 5, 5)-<MonthBegin: n=1>-(1, 2, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[standard-(1, 1, 3, 5, 5, 5, 5)-<MonthBegin: n=-1>-(1, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[standard-(1, 1, 3, 5, 5, 5, 5)-<MonthBegin: n=1>-(1, 2, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[standard-(1, 1, 7)-<MonthBegin: n=1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[standard-(1, 1, 7)-<MonthBegin: n=2>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[standard-(1, 2, 1)-<MonthBegin: n=14>-(2, 4, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[standard-(1, 3, 1)-<MonthBegin: n=-1>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[standard-(1, 3, 1)-<MonthBegin: n=-2>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[standard-(1, 3, 3)-<MonthBegin: n=-1>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[standard-(1, 3, 3)-<MonthBegin: n=-2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_begin[standard-(2, 4, 1)-<MonthBegin: n=-14>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[360_day-(1, 1, 1)-<MonthEnd: n=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[360_day-(1, 1, 1)-<MonthEnd: n=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[360_day-(1, 1, 1, 5, 5, 5, 5)-<MonthEnd: n=1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[360_day-(1, 2, 1)-<MonthEnd: n=14>-(2, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[360_day-(1, 2, 1, 5, 5, 5, 5)-<MonthEnd: n=-1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[360_day-(1, 3, 1)-<MonthEnd: n=-1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[360_day-(1, 3, 1)-<MonthEnd: n=-2>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[360_day-(2, 4, 1)-<MonthEnd: n=-14>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[365_day-(1, 1, 1)-<MonthEnd: n=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[365_day-(1, 1, 1)-<MonthEnd: n=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[365_day-(1, 1, 1, 5, 5, 5, 5)-<MonthEnd: n=1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[365_day-(1, 2, 1)-<MonthEnd: n=14>-(2, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[365_day-(1, 2, 1, 5, 5, 5, 5)-<MonthEnd: n=-1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[365_day-(1, 3, 1)-<MonthEnd: n=-1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[365_day-(1, 3, 1)-<MonthEnd: n=-2>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[365_day-(2, 4, 1)-<MonthEnd: n=-14>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[366_day-(1, 1, 1)-<MonthEnd: n=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[366_day-(1, 1, 1)-<MonthEnd: n=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[366_day-(1, 1, 1, 5, 5, 5, 5)-<MonthEnd: n=1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[366_day-(1, 2, 1)-<MonthEnd: n=14>-(2, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[366_day-(1, 2, 1, 5, 5, 5, 5)-<MonthEnd: n=-1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[366_day-(1, 3, 1)-<MonthEnd: n=-1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[366_day-(1, 3, 1)-<MonthEnd: n=-2>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[366_day-(2, 4, 1)-<MonthEnd: n=-14>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[all_leap-(1, 1, 1)-<MonthEnd: n=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[all_leap-(1, 1, 1)-<MonthEnd: n=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[all_leap-(1, 1, 1, 5, 5, 5, 5)-<MonthEnd: n=1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[all_leap-(1, 2, 1)-<MonthEnd: n=14>-(2, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[all_leap-(1, 2, 1, 5, 5, 5, 5)-<MonthEnd: n=-1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[all_leap-(1, 3, 1)-<MonthEnd: n=-1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[all_leap-(1, 3, 1)-<MonthEnd: n=-2>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[all_leap-(2, 4, 1)-<MonthEnd: n=-14>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[gregorian-(1, 1, 1)-<MonthEnd: n=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[gregorian-(1, 1, 1)-<MonthEnd: n=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[gregorian-(1, 1, 1, 5, 5, 5, 5)-<MonthEnd: n=1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[gregorian-(1, 2, 1)-<MonthEnd: n=14>-(2, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[gregorian-(1, 2, 1, 5, 5, 5, 5)-<MonthEnd: n=-1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[gregorian-(1, 3, 1)-<MonthEnd: n=-1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[gregorian-(1, 3, 1)-<MonthEnd: n=-2>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[gregorian-(2, 4, 1)-<MonthEnd: n=-14>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[julian-(1, 1, 1)-<MonthEnd: n=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[julian-(1, 1, 1)-<MonthEnd: n=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[julian-(1, 1, 1, 5, 5, 5, 5)-<MonthEnd: n=1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[julian-(1, 2, 1)-<MonthEnd: n=14>-(2, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[julian-(1, 2, 1, 5, 5, 5, 5)-<MonthEnd: n=-1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[julian-(1, 3, 1)-<MonthEnd: n=-1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[julian-(1, 3, 1)-<MonthEnd: n=-2>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[julian-(2, 4, 1)-<MonthEnd: n=-14>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[proleptic_gregorian-(1, 1, 1)-<MonthEnd: n=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[proleptic_gregorian-(1, 1, 1)-<MonthEnd: n=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[proleptic_gregorian-(1, 1, 1, 5, 5, 5, 5)-<MonthEnd: n=1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[proleptic_gregorian-(1, 2, 1)-<MonthEnd: n=14>-(2, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[proleptic_gregorian-(1, 2, 1, 5, 5, 5, 5)-<MonthEnd: n=-1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[proleptic_gregorian-(1, 3, 1)-<MonthEnd: n=-1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[proleptic_gregorian-(1, 3, 1)-<MonthEnd: n=-2>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[proleptic_gregorian-(2, 4, 1)-<MonthEnd: n=-14>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[standard-(1, 1, 1)-<MonthEnd: n=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[standard-(1, 1, 1)-<MonthEnd: n=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[standard-(1, 1, 1, 5, 5, 5, 5)-<MonthEnd: n=1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[standard-(1, 2, 1)-<MonthEnd: n=14>-(2, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[standard-(1, 2, 1, 5, 5, 5, 5)-<MonthEnd: n=-1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[standard-(1, 3, 1)-<MonthEnd: n=-1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[standard-(1, 3, 1)-<MonthEnd: n=-2>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end[standard-(2, 4, 1)-<MonthEnd: n=-14>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[360_day-(1, 1)-()-<MonthEnd: n=1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[360_day-(1, 1)-()-<MonthEnd: n=2>-(1, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[360_day-(1, 1)-(5, 5, 5, 5)-<MonthEnd: n=1>-(1, 2)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[360_day-(1, 2)-()-<MonthEnd: n=14>-(2, 4)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[360_day-(1, 2)-(5, 5, 5, 5)-<MonthEnd: n=-1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[360_day-(1, 3)-()-<MonthEnd: n=-1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[360_day-(1, 3)-()-<MonthEnd: n=-2>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[360_day-(2, 4)-()-<MonthEnd: n=-14>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[365_day-(1, 1)-()-<MonthEnd: n=1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[365_day-(1, 1)-()-<MonthEnd: n=2>-(1, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[365_day-(1, 1)-(5, 5, 5, 5)-<MonthEnd: n=1>-(1, 2)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[365_day-(1, 2)-()-<MonthEnd: n=14>-(2, 4)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[365_day-(1, 2)-(5, 5, 5, 5)-<MonthEnd: n=-1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[365_day-(1, 3)-()-<MonthEnd: n=-1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[365_day-(1, 3)-()-<MonthEnd: n=-2>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[365_day-(2, 4)-()-<MonthEnd: n=-14>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[366_day-(1, 1)-()-<MonthEnd: n=1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[366_day-(1, 1)-()-<MonthEnd: n=2>-(1, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[366_day-(1, 1)-(5, 5, 5, 5)-<MonthEnd: n=1>-(1, 2)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[366_day-(1, 2)-()-<MonthEnd: n=14>-(2, 4)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[366_day-(1, 2)-(5, 5, 5, 5)-<MonthEnd: n=-1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[366_day-(1, 3)-()-<MonthEnd: n=-1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[366_day-(1, 3)-()-<MonthEnd: n=-2>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[366_day-(2, 4)-()-<MonthEnd: n=-14>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[all_leap-(1, 1)-()-<MonthEnd: n=1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[all_leap-(1, 1)-()-<MonthEnd: n=2>-(1, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[all_leap-(1, 1)-(5, 5, 5, 5)-<MonthEnd: n=1>-(1, 2)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[all_leap-(1, 2)-()-<MonthEnd: n=14>-(2, 4)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[all_leap-(1, 2)-(5, 5, 5, 5)-<MonthEnd: n=-1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[all_leap-(1, 3)-()-<MonthEnd: n=-1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[all_leap-(1, 3)-()-<MonthEnd: n=-2>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[all_leap-(2, 4)-()-<MonthEnd: n=-14>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[gregorian-(1, 1)-()-<MonthEnd: n=1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[gregorian-(1, 1)-()-<MonthEnd: n=2>-(1, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[gregorian-(1, 1)-(5, 5, 5, 5)-<MonthEnd: n=1>-(1, 2)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[gregorian-(1, 2)-()-<MonthEnd: n=14>-(2, 4)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[gregorian-(1, 2)-(5, 5, 5, 5)-<MonthEnd: n=-1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[gregorian-(1, 3)-()-<MonthEnd: n=-1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[gregorian-(1, 3)-()-<MonthEnd: n=-2>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[gregorian-(2, 4)-()-<MonthEnd: n=-14>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[julian-(1, 1)-()-<MonthEnd: n=1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[julian-(1, 1)-()-<MonthEnd: n=2>-(1, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[julian-(1, 1)-(5, 5, 5, 5)-<MonthEnd: n=1>-(1, 2)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[julian-(1, 2)-()-<MonthEnd: n=14>-(2, 4)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[julian-(1, 2)-(5, 5, 5, 5)-<MonthEnd: n=-1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[julian-(1, 3)-()-<MonthEnd: n=-1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[julian-(1, 3)-()-<MonthEnd: n=-2>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[julian-(2, 4)-()-<MonthEnd: n=-14>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[proleptic_gregorian-(1, 1)-()-<MonthEnd: n=1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[proleptic_gregorian-(1, 1)-()-<MonthEnd: n=2>-(1, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[proleptic_gregorian-(1, 1)-(5, 5, 5, 5)-<MonthEnd: n=1>-(1, 2)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[proleptic_gregorian-(1, 2)-()-<MonthEnd: n=14>-(2, 4)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[proleptic_gregorian-(1, 2)-(5, 5, 5, 5)-<MonthEnd: n=-1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[proleptic_gregorian-(1, 3)-()-<MonthEnd: n=-1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[proleptic_gregorian-(1, 3)-()-<MonthEnd: n=-2>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[proleptic_gregorian-(2, 4)-()-<MonthEnd: n=-14>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[standard-(1, 1)-()-<MonthEnd: n=1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[standard-(1, 1)-()-<MonthEnd: n=2>-(1, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[standard-(1, 1)-(5, 5, 5, 5)-<MonthEnd: n=1>-(1, 2)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[standard-(1, 2)-()-<MonthEnd: n=14>-(2, 4)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[standard-(1, 2)-(5, 5, 5, 5)-<MonthEnd: n=-1>-(1, 1)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[standard-(1, 3)-()-<MonthEnd: n=-1>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[standard-(1, 3)-()-<MonthEnd: n=-2>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_month_end_onOffset[standard-(2, 4)-()-<MonthEnd: n=-14>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[360_day-(1, 1, 1)-<QuarterBegin: n=1, month=2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[360_day-(1, 1, 1)-<QuarterBegin: n=1, month=3>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[360_day-(1, 1, 1)-<QuarterBegin: n=2, month=3>-(1, 6, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[360_day-(1, 1, 1, 5, 5, 5, 5)-<QuarterBegin: n=1, month=3>-(1, 3, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[360_day-(1, 1, 7)-<QuarterBegin: n=2, month=3>-(1, 6, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[360_day-(1, 3, 2)-<QuarterBegin: n=-1, month=3>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[360_day-(2, 1, 1, 5, 5, 5, 5)-<QuarterBegin: n=-1, month=3>-(1, 12, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[360_day-(2, 2, 1)-<QuarterBegin: n=-1, month=3>-(1, 12, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[365_day-(1, 1, 1)-<QuarterBegin: n=1, month=2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[365_day-(1, 1, 1)-<QuarterBegin: n=1, month=3>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[365_day-(1, 1, 1)-<QuarterBegin: n=2, month=3>-(1, 6, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[365_day-(1, 1, 1, 5, 5, 5, 5)-<QuarterBegin: n=1, month=3>-(1, 3, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[365_day-(1, 1, 7)-<QuarterBegin: n=2, month=3>-(1, 6, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[365_day-(1, 3, 2)-<QuarterBegin: n=-1, month=3>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[365_day-(2, 1, 1, 5, 5, 5, 5)-<QuarterBegin: n=-1, month=3>-(1, 12, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[365_day-(2, 2, 1)-<QuarterBegin: n=-1, month=3>-(1, 12, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[366_day-(1, 1, 1)-<QuarterBegin: n=1, month=2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[366_day-(1, 1, 1)-<QuarterBegin: n=1, month=3>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[366_day-(1, 1, 1)-<QuarterBegin: n=2, month=3>-(1, 6, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[366_day-(1, 1, 1, 5, 5, 5, 5)-<QuarterBegin: n=1, month=3>-(1, 3, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[366_day-(1, 1, 7)-<QuarterBegin: n=2, month=3>-(1, 6, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[366_day-(1, 3, 2)-<QuarterBegin: n=-1, month=3>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[366_day-(2, 1, 1, 5, 5, 5, 5)-<QuarterBegin: n=-1, month=3>-(1, 12, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[366_day-(2, 2, 1)-<QuarterBegin: n=-1, month=3>-(1, 12, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[all_leap-(1, 1, 1)-<QuarterBegin: n=1, month=2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[all_leap-(1, 1, 1)-<QuarterBegin: n=1, month=3>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[all_leap-(1, 1, 1)-<QuarterBegin: n=2, month=3>-(1, 6, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[all_leap-(1, 1, 1, 5, 5, 5, 5)-<QuarterBegin: n=1, month=3>-(1, 3, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[all_leap-(1, 1, 7)-<QuarterBegin: n=2, month=3>-(1, 6, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[all_leap-(1, 3, 2)-<QuarterBegin: n=-1, month=3>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[all_leap-(2, 1, 1, 5, 5, 5, 5)-<QuarterBegin: n=-1, month=3>-(1, 12, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[all_leap-(2, 2, 1)-<QuarterBegin: n=-1, month=3>-(1, 12, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[gregorian-(1, 1, 1)-<QuarterBegin: n=1, month=2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[gregorian-(1, 1, 1)-<QuarterBegin: n=1, month=3>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[gregorian-(1, 1, 1)-<QuarterBegin: n=2, month=3>-(1, 6, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[gregorian-(1, 1, 1, 5, 5, 5, 5)-<QuarterBegin: n=1, month=3>-(1, 3, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[gregorian-(1, 1, 7)-<QuarterBegin: n=2, month=3>-(1, 6, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[gregorian-(1, 3, 2)-<QuarterBegin: n=-1, month=3>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[gregorian-(2, 1, 1, 5, 5, 5, 5)-<QuarterBegin: n=-1, month=3>-(1, 12, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[gregorian-(2, 2, 1)-<QuarterBegin: n=-1, month=3>-(1, 12, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[julian-(1, 1, 1)-<QuarterBegin: n=1, month=2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[julian-(1, 1, 1)-<QuarterBegin: n=1, month=3>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[julian-(1, 1, 1)-<QuarterBegin: n=2, month=3>-(1, 6, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[julian-(1, 1, 1, 5, 5, 5, 5)-<QuarterBegin: n=1, month=3>-(1, 3, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[julian-(1, 1, 7)-<QuarterBegin: n=2, month=3>-(1, 6, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[julian-(1, 3, 2)-<QuarterBegin: n=-1, month=3>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[julian-(2, 1, 1, 5, 5, 5, 5)-<QuarterBegin: n=-1, month=3>-(1, 12, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[julian-(2, 2, 1)-<QuarterBegin: n=-1, month=3>-(1, 12, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[proleptic_gregorian-(1, 1, 1)-<QuarterBegin: n=1, month=2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[proleptic_gregorian-(1, 1, 1)-<QuarterBegin: n=1, month=3>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[proleptic_gregorian-(1, 1, 1)-<QuarterBegin: n=2, month=3>-(1, 6, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[proleptic_gregorian-(1, 1, 1, 5, 5, 5, 5)-<QuarterBegin: n=1, month=3>-(1, 3, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[proleptic_gregorian-(1, 1, 7)-<QuarterBegin: n=2, month=3>-(1, 6, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[proleptic_gregorian-(1, 3, 2)-<QuarterBegin: n=-1, month=3>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[proleptic_gregorian-(2, 1, 1, 5, 5, 5, 5)-<QuarterBegin: n=-1, month=3>-(1, 12, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[proleptic_gregorian-(2, 2, 1)-<QuarterBegin: n=-1, month=3>-(1, 12, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[standard-(1, 1, 1)-<QuarterBegin: n=1, month=2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[standard-(1, 1, 1)-<QuarterBegin: n=1, month=3>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[standard-(1, 1, 1)-<QuarterBegin: n=2, month=3>-(1, 6, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[standard-(1, 1, 1, 5, 5, 5, 5)-<QuarterBegin: n=1, month=3>-(1, 3, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[standard-(1, 1, 7)-<QuarterBegin: n=2, month=3>-(1, 6, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[standard-(1, 3, 2)-<QuarterBegin: n=-1, month=3>-(1, 3, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[standard-(2, 1, 1, 5, 5, 5, 5)-<QuarterBegin: n=-1, month=3>-(1, 12, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_begin[standard-(2, 2, 1)-<QuarterBegin: n=-1, month=3>-(1, 12, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[360_day-(1, 1, 1)-<QuarterEnd: n=1, month=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[360_day-(1, 1, 1)-<QuarterEnd: n=1, month=3>-(1, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[360_day-(1, 1, 1)-<QuarterEnd: n=2, month=3>-(1, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[360_day-(1, 1, 1, 5, 5, 5, 5)-<QuarterEnd: n=1, month=3>-(1, 3)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[360_day-(1, 1, 1, 5, 5, 5, 5)-<QuarterEnd: n=2, month=3>-(1, 6)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[360_day-(1, 3, 1)-<QuarterEnd: n=-1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[360_day-(2, 3, 1)-<QuarterEnd: n=-1, month=3>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[365_day-(1, 1, 1)-<QuarterEnd: n=1, month=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[365_day-(1, 1, 1)-<QuarterEnd: n=1, month=3>-(1, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[365_day-(1, 1, 1)-<QuarterEnd: n=2, month=3>-(1, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[365_day-(1, 1, 1, 5, 5, 5, 5)-<QuarterEnd: n=1, month=3>-(1, 3)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[365_day-(1, 1, 1, 5, 5, 5, 5)-<QuarterEnd: n=2, month=3>-(1, 6)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[365_day-(1, 3, 1)-<QuarterEnd: n=-1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[365_day-(2, 3, 1)-<QuarterEnd: n=-1, month=3>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[366_day-(1, 1, 1)-<QuarterEnd: n=1, month=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[366_day-(1, 1, 1)-<QuarterEnd: n=1, month=3>-(1, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[366_day-(1, 1, 1)-<QuarterEnd: n=2, month=3>-(1, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[366_day-(1, 1, 1, 5, 5, 5, 5)-<QuarterEnd: n=1, month=3>-(1, 3)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[366_day-(1, 1, 1, 5, 5, 5, 5)-<QuarterEnd: n=2, month=3>-(1, 6)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[366_day-(1, 3, 1)-<QuarterEnd: n=-1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[366_day-(2, 3, 1)-<QuarterEnd: n=-1, month=3>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[all_leap-(1, 1, 1)-<QuarterEnd: n=1, month=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[all_leap-(1, 1, 1)-<QuarterEnd: n=1, month=3>-(1, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[all_leap-(1, 1, 1)-<QuarterEnd: n=2, month=3>-(1, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[all_leap-(1, 1, 1, 5, 5, 5, 5)-<QuarterEnd: n=1, month=3>-(1, 3)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[all_leap-(1, 1, 1, 5, 5, 5, 5)-<QuarterEnd: n=2, month=3>-(1, 6)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[all_leap-(1, 3, 1)-<QuarterEnd: n=-1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[all_leap-(2, 3, 1)-<QuarterEnd: n=-1, month=3>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[gregorian-(1, 1, 1)-<QuarterEnd: n=1, month=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[gregorian-(1, 1, 1)-<QuarterEnd: n=1, month=3>-(1, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[gregorian-(1, 1, 1)-<QuarterEnd: n=2, month=3>-(1, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[gregorian-(1, 1, 1, 5, 5, 5, 5)-<QuarterEnd: n=1, month=3>-(1, 3)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[gregorian-(1, 1, 1, 5, 5, 5, 5)-<QuarterEnd: n=2, month=3>-(1, 6)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[gregorian-(1, 3, 1)-<QuarterEnd: n=-1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[gregorian-(2, 3, 1)-<QuarterEnd: n=-1, month=3>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[julian-(1, 1, 1)-<QuarterEnd: n=1, month=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[julian-(1, 1, 1)-<QuarterEnd: n=1, month=3>-(1, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[julian-(1, 1, 1)-<QuarterEnd: n=2, month=3>-(1, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[julian-(1, 1, 1, 5, 5, 5, 5)-<QuarterEnd: n=1, month=3>-(1, 3)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[julian-(1, 1, 1, 5, 5, 5, 5)-<QuarterEnd: n=2, month=3>-(1, 6)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[julian-(1, 3, 1)-<QuarterEnd: n=-1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[julian-(2, 3, 1)-<QuarterEnd: n=-1, month=3>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[proleptic_gregorian-(1, 1, 1)-<QuarterEnd: n=1, month=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[proleptic_gregorian-(1, 1, 1)-<QuarterEnd: n=1, month=3>-(1, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[proleptic_gregorian-(1, 1, 1)-<QuarterEnd: n=2, month=3>-(1, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[proleptic_gregorian-(1, 1, 1, 5, 5, 5, 5)-<QuarterEnd: n=1, month=3>-(1, 3)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[proleptic_gregorian-(1, 1, 1, 5, 5, 5, 5)-<QuarterEnd: n=2, month=3>-(1, 6)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[proleptic_gregorian-(1, 3, 1)-<QuarterEnd: n=-1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[proleptic_gregorian-(2, 3, 1)-<QuarterEnd: n=-1, month=3>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[standard-(1, 1, 1)-<QuarterEnd: n=1, month=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[standard-(1, 1, 1)-<QuarterEnd: n=1, month=3>-(1, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[standard-(1, 1, 1)-<QuarterEnd: n=2, month=3>-(1, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[standard-(1, 1, 1, 5, 5, 5, 5)-<QuarterEnd: n=1, month=3>-(1, 3)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[standard-(1, 1, 1, 5, 5, 5, 5)-<QuarterEnd: n=2, month=3>-(1, 6)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[standard-(1, 3, 1)-<QuarterEnd: n=-1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end[standard-(2, 3, 1)-<QuarterEnd: n=-1, month=3>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[360_day-(1, 1)-()-<QuarterEnd: n=1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[360_day-(1, 12)-()-<QuarterEnd: n=-1, month=3>-(1, 9)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[360_day-(1, 12)-()-<QuarterEnd: n=-2, month=3>-(1, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[360_day-(1, 12)-()-<QuarterEnd: n=1, month=3>-(2, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[360_day-(1, 12)-()-<QuarterEnd: n=2, month=3>-(2, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[360_day-(1, 12)-(5, 5, 5, 5)-<QuarterEnd: n=-1, month=3>-(1, 9)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[360_day-(1, 12)-(5, 5, 5, 5)-<QuarterEnd: n=1, month=3>-(2, 3)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[365_day-(1, 1)-()-<QuarterEnd: n=1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[365_day-(1, 12)-()-<QuarterEnd: n=-1, month=3>-(1, 9)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[365_day-(1, 12)-()-<QuarterEnd: n=-2, month=3>-(1, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[365_day-(1, 12)-()-<QuarterEnd: n=1, month=3>-(2, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[365_day-(1, 12)-()-<QuarterEnd: n=2, month=3>-(2, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[365_day-(1, 12)-(5, 5, 5, 5)-<QuarterEnd: n=-1, month=3>-(1, 9)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[365_day-(1, 12)-(5, 5, 5, 5)-<QuarterEnd: n=1, month=3>-(2, 3)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[366_day-(1, 1)-()-<QuarterEnd: n=1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[366_day-(1, 12)-()-<QuarterEnd: n=-1, month=3>-(1, 9)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[366_day-(1, 12)-()-<QuarterEnd: n=-2, month=3>-(1, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[366_day-(1, 12)-()-<QuarterEnd: n=1, month=3>-(2, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[366_day-(1, 12)-()-<QuarterEnd: n=2, month=3>-(2, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[366_day-(1, 12)-(5, 5, 5, 5)-<QuarterEnd: n=-1, month=3>-(1, 9)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[366_day-(1, 12)-(5, 5, 5, 5)-<QuarterEnd: n=1, month=3>-(2, 3)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[all_leap-(1, 1)-()-<QuarterEnd: n=1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[all_leap-(1, 12)-()-<QuarterEnd: n=-1, month=3>-(1, 9)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[all_leap-(1, 12)-()-<QuarterEnd: n=-2, month=3>-(1, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[all_leap-(1, 12)-()-<QuarterEnd: n=1, month=3>-(2, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[all_leap-(1, 12)-()-<QuarterEnd: n=2, month=3>-(2, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[all_leap-(1, 12)-(5, 5, 5, 5)-<QuarterEnd: n=-1, month=3>-(1, 9)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[all_leap-(1, 12)-(5, 5, 5, 5)-<QuarterEnd: n=1, month=3>-(2, 3)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[gregorian-(1, 1)-()-<QuarterEnd: n=1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[gregorian-(1, 12)-()-<QuarterEnd: n=-1, month=3>-(1, 9)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[gregorian-(1, 12)-()-<QuarterEnd: n=-2, month=3>-(1, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[gregorian-(1, 12)-()-<QuarterEnd: n=1, month=3>-(2, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[gregorian-(1, 12)-()-<QuarterEnd: n=2, month=3>-(2, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[gregorian-(1, 12)-(5, 5, 5, 5)-<QuarterEnd: n=-1, month=3>-(1, 9)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[gregorian-(1, 12)-(5, 5, 5, 5)-<QuarterEnd: n=1, month=3>-(2, 3)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[julian-(1, 1)-()-<QuarterEnd: n=1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[julian-(1, 12)-()-<QuarterEnd: n=-1, month=3>-(1, 9)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[julian-(1, 12)-()-<QuarterEnd: n=-2, month=3>-(1, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[julian-(1, 12)-()-<QuarterEnd: n=1, month=3>-(2, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[julian-(1, 12)-()-<QuarterEnd: n=2, month=3>-(2, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[julian-(1, 12)-(5, 5, 5, 5)-<QuarterEnd: n=-1, month=3>-(1, 9)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[julian-(1, 12)-(5, 5, 5, 5)-<QuarterEnd: n=1, month=3>-(2, 3)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[proleptic_gregorian-(1, 1)-()-<QuarterEnd: n=1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[proleptic_gregorian-(1, 12)-()-<QuarterEnd: n=-1, month=3>-(1, 9)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[proleptic_gregorian-(1, 12)-()-<QuarterEnd: n=-2, month=3>-(1, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[proleptic_gregorian-(1, 12)-()-<QuarterEnd: n=1, month=3>-(2, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[proleptic_gregorian-(1, 12)-()-<QuarterEnd: n=2, month=3>-(2, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[proleptic_gregorian-(1, 12)-(5, 5, 5, 5)-<QuarterEnd: n=-1, month=3>-(1, 9)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[proleptic_gregorian-(1, 12)-(5, 5, 5, 5)-<QuarterEnd: n=1, month=3>-(2, 3)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[standard-(1, 1)-()-<QuarterEnd: n=1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[standard-(1, 12)-()-<QuarterEnd: n=-1, month=3>-(1, 9)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[standard-(1, 12)-()-<QuarterEnd: n=-2, month=3>-(1, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[standard-(1, 12)-()-<QuarterEnd: n=1, month=3>-(2, 3)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[standard-(1, 12)-()-<QuarterEnd: n=2, month=3>-(2, 6)-()]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[standard-(1, 12)-(5, 5, 5, 5)-<QuarterEnd: n=-1, month=3>-(1, 9)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_quarter_end_onOffset[standard-(1, 12)-(5, 5, 5, 5)-<QuarterEnd: n=1, month=3>-(2, 3)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[360_day-<Day: n=2>-(1, 1, 3)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[360_day-<Hour: n=2>-(1, 1, 1, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[360_day-<Microsecond: n=2>-(1, 1, 1, 0, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[360_day-<Millisecond: n=2>-(1, 1, 1, 0, 0, 0, 2000)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[360_day-<Minute: n=2>-(1, 1, 1, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[360_day-<Second: n=2>-(1, 1, 1, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[365_day-<Day: n=2>-(1, 1, 3)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[365_day-<Hour: n=2>-(1, 1, 1, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[365_day-<Microsecond: n=2>-(1, 1, 1, 0, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[365_day-<Millisecond: n=2>-(1, 1, 1, 0, 0, 0, 2000)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[365_day-<Minute: n=2>-(1, 1, 1, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[365_day-<Second: n=2>-(1, 1, 1, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[366_day-<Day: n=2>-(1, 1, 3)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[366_day-<Hour: n=2>-(1, 1, 1, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[366_day-<Microsecond: n=2>-(1, 1, 1, 0, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[366_day-<Millisecond: n=2>-(1, 1, 1, 0, 0, 0, 2000)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[366_day-<Minute: n=2>-(1, 1, 1, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[366_day-<Second: n=2>-(1, 1, 1, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[all_leap-<Day: n=2>-(1, 1, 3)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[all_leap-<Hour: n=2>-(1, 1, 1, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[all_leap-<Microsecond: n=2>-(1, 1, 1, 0, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[all_leap-<Millisecond: n=2>-(1, 1, 1, 0, 0, 0, 2000)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[all_leap-<Minute: n=2>-(1, 1, 1, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[all_leap-<Second: n=2>-(1, 1, 1, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[gregorian-<Day: n=2>-(1, 1, 3)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[gregorian-<Hour: n=2>-(1, 1, 1, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[gregorian-<Microsecond: n=2>-(1, 1, 1, 0, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[gregorian-<Millisecond: n=2>-(1, 1, 1, 0, 0, 0, 2000)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[gregorian-<Minute: n=2>-(1, 1, 1, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[gregorian-<Second: n=2>-(1, 1, 1, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[julian-<Day: n=2>-(1, 1, 3)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[julian-<Hour: n=2>-(1, 1, 1, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[julian-<Microsecond: n=2>-(1, 1, 1, 0, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[julian-<Millisecond: n=2>-(1, 1, 1, 0, 0, 0, 2000)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[julian-<Minute: n=2>-(1, 1, 1, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[julian-<Second: n=2>-(1, 1, 1, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[proleptic_gregorian-<Day: n=2>-(1, 1, 3)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[proleptic_gregorian-<Hour: n=2>-(1, 1, 1, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[proleptic_gregorian-<Microsecond: n=2>-(1, 1, 1, 0, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[proleptic_gregorian-<Millisecond: n=2>-(1, 1, 1, 0, 0, 0, 2000)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[proleptic_gregorian-<Minute: n=2>-(1, 1, 1, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[proleptic_gregorian-<Second: n=2>-(1, 1, 1, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[standard-<Day: n=2>-(1, 1, 3)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[standard-<Hour: n=2>-(1, 1, 1, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[standard-<Microsecond: n=2>-(1, 1, 1, 0, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[standard-<Millisecond: n=2>-(1, 1, 1, 0, 0, 0, 2000)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[standard-<Minute: n=2>-(1, 1, 1, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_sub_monthly[standard-<Second: n=2>-(1, 1, 1, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[360_day-(1, 1, 1)-<YearBegin: n=1, month=1>-(2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[360_day-(1, 1, 1)-<YearBegin: n=1, month=2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[360_day-(1, 1, 1)-<YearBegin: n=2, month=1>-(3, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[360_day-(1, 1, 1, 5, 5, 5, 5)-<YearBegin: n=1, month=1>-(2, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[360_day-(1, 1, 2)-<YearBegin: n=-1, month=1>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[360_day-(1, 1, 7)-<YearBegin: n=2, month=1>-(3, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[360_day-(2, 1, 1, 5, 5, 5, 5)-<YearBegin: n=-1, month=1>-(1, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[360_day-(2, 2, 1)-<YearBegin: n=-1, month=1>-(2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[365_day-(1, 1, 1)-<YearBegin: n=1, month=1>-(2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[365_day-(1, 1, 1)-<YearBegin: n=1, month=2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[365_day-(1, 1, 1)-<YearBegin: n=2, month=1>-(3, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[365_day-(1, 1, 1, 5, 5, 5, 5)-<YearBegin: n=1, month=1>-(2, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[365_day-(1, 1, 2)-<YearBegin: n=-1, month=1>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[365_day-(1, 1, 7)-<YearBegin: n=2, month=1>-(3, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[365_day-(2, 1, 1, 5, 5, 5, 5)-<YearBegin: n=-1, month=1>-(1, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[365_day-(2, 2, 1)-<YearBegin: n=-1, month=1>-(2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[366_day-(1, 1, 1)-<YearBegin: n=1, month=1>-(2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[366_day-(1, 1, 1)-<YearBegin: n=1, month=2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[366_day-(1, 1, 1)-<YearBegin: n=2, month=1>-(3, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[366_day-(1, 1, 1, 5, 5, 5, 5)-<YearBegin: n=1, month=1>-(2, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[366_day-(1, 1, 2)-<YearBegin: n=-1, month=1>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[366_day-(1, 1, 7)-<YearBegin: n=2, month=1>-(3, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[366_day-(2, 1, 1, 5, 5, 5, 5)-<YearBegin: n=-1, month=1>-(1, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[366_day-(2, 2, 1)-<YearBegin: n=-1, month=1>-(2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[all_leap-(1, 1, 1)-<YearBegin: n=1, month=1>-(2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[all_leap-(1, 1, 1)-<YearBegin: n=1, month=2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[all_leap-(1, 1, 1)-<YearBegin: n=2, month=1>-(3, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[all_leap-(1, 1, 1, 5, 5, 5, 5)-<YearBegin: n=1, month=1>-(2, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[all_leap-(1, 1, 2)-<YearBegin: n=-1, month=1>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[all_leap-(1, 1, 7)-<YearBegin: n=2, month=1>-(3, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[all_leap-(2, 1, 1, 5, 5, 5, 5)-<YearBegin: n=-1, month=1>-(1, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[all_leap-(2, 2, 1)-<YearBegin: n=-1, month=1>-(2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[gregorian-(1, 1, 1)-<YearBegin: n=1, month=1>-(2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[gregorian-(1, 1, 1)-<YearBegin: n=1, month=2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[gregorian-(1, 1, 1)-<YearBegin: n=2, month=1>-(3, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[gregorian-(1, 1, 1, 5, 5, 5, 5)-<YearBegin: n=1, month=1>-(2, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[gregorian-(1, 1, 2)-<YearBegin: n=-1, month=1>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[gregorian-(1, 1, 7)-<YearBegin: n=2, month=1>-(3, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[gregorian-(2, 1, 1, 5, 5, 5, 5)-<YearBegin: n=-1, month=1>-(1, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[gregorian-(2, 2, 1)-<YearBegin: n=-1, month=1>-(2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[julian-(1, 1, 1)-<YearBegin: n=1, month=1>-(2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[julian-(1, 1, 1)-<YearBegin: n=1, month=2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[julian-(1, 1, 1)-<YearBegin: n=2, month=1>-(3, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[julian-(1, 1, 1, 5, 5, 5, 5)-<YearBegin: n=1, month=1>-(2, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[julian-(1, 1, 2)-<YearBegin: n=-1, month=1>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[julian-(1, 1, 7)-<YearBegin: n=2, month=1>-(3, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[julian-(2, 1, 1, 5, 5, 5, 5)-<YearBegin: n=-1, month=1>-(1, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[julian-(2, 2, 1)-<YearBegin: n=-1, month=1>-(2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[proleptic_gregorian-(1, 1, 1)-<YearBegin: n=1, month=1>-(2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[proleptic_gregorian-(1, 1, 1)-<YearBegin: n=1, month=2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[proleptic_gregorian-(1, 1, 1)-<YearBegin: n=2, month=1>-(3, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[proleptic_gregorian-(1, 1, 1, 5, 5, 5, 5)-<YearBegin: n=1, month=1>-(2, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[proleptic_gregorian-(1, 1, 2)-<YearBegin: n=-1, month=1>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[proleptic_gregorian-(1, 1, 7)-<YearBegin: n=2, month=1>-(3, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[proleptic_gregorian-(2, 1, 1, 5, 5, 5, 5)-<YearBegin: n=-1, month=1>-(1, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[proleptic_gregorian-(2, 2, 1)-<YearBegin: n=-1, month=1>-(2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[standard-(1, 1, 1)-<YearBegin: n=1, month=1>-(2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[standard-(1, 1, 1)-<YearBegin: n=1, month=2>-(1, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[standard-(1, 1, 1)-<YearBegin: n=2, month=1>-(3, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[standard-(1, 1, 1, 5, 5, 5, 5)-<YearBegin: n=1, month=1>-(2, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[standard-(1, 1, 2)-<YearBegin: n=-1, month=1>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[standard-(1, 1, 7)-<YearBegin: n=2, month=1>-(3, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[standard-(2, 1, 1, 5, 5, 5, 5)-<YearBegin: n=-1, month=1>-(1, 1, 1, 5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_begin[standard-(2, 2, 1)-<YearBegin: n=-1, month=1>-(2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[360_day-(1, 1, 1)-<YearEnd: n=1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[360_day-(1, 1, 1)-<YearEnd: n=1, month=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[360_day-(1, 1, 1)-<YearEnd: n=2, month=12>-(2, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[360_day-(1, 1, 1, 5, 5, 5, 5)-<YearEnd: n=1, month=12>-(1, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[360_day-(1, 1, 1, 5, 5, 5, 5)-<YearEnd: n=2, month=12>-(2, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[360_day-(1, 3, 1)-<YearEnd: n=-1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[360_day-(2, 3, 1)-<YearEnd: n=-1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[365_day-(1, 1, 1)-<YearEnd: n=1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[365_day-(1, 1, 1)-<YearEnd: n=1, month=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[365_day-(1, 1, 1)-<YearEnd: n=2, month=12>-(2, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[365_day-(1, 1, 1, 5, 5, 5, 5)-<YearEnd: n=1, month=12>-(1, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[365_day-(1, 1, 1, 5, 5, 5, 5)-<YearEnd: n=2, month=12>-(2, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[365_day-(1, 3, 1)-<YearEnd: n=-1, month=2>-(1, 2)-()]

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

18042 tests found (test 2852 to 3435)

There are 18042 tests, see "Raw output" for the list of tests 2852 to 3435.
Raw output
xarray.tests.test_cftime_offsets ‑ test_add_year_end[365_day-(2, 3, 1)-<YearEnd: n=-1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[366_day-(1, 1, 1)-<YearEnd: n=1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[366_day-(1, 1, 1)-<YearEnd: n=1, month=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[366_day-(1, 1, 1)-<YearEnd: n=2, month=12>-(2, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[366_day-(1, 1, 1, 5, 5, 5, 5)-<YearEnd: n=1, month=12>-(1, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[366_day-(1, 1, 1, 5, 5, 5, 5)-<YearEnd: n=2, month=12>-(2, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[366_day-(1, 3, 1)-<YearEnd: n=-1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[366_day-(2, 3, 1)-<YearEnd: n=-1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[all_leap-(1, 1, 1)-<YearEnd: n=1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[all_leap-(1, 1, 1)-<YearEnd: n=1, month=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[all_leap-(1, 1, 1)-<YearEnd: n=2, month=12>-(2, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[all_leap-(1, 1, 1, 5, 5, 5, 5)-<YearEnd: n=1, month=12>-(1, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[all_leap-(1, 1, 1, 5, 5, 5, 5)-<YearEnd: n=2, month=12>-(2, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[all_leap-(1, 3, 1)-<YearEnd: n=-1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[all_leap-(2, 3, 1)-<YearEnd: n=-1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[gregorian-(1, 1, 1)-<YearEnd: n=1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[gregorian-(1, 1, 1)-<YearEnd: n=1, month=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[gregorian-(1, 1, 1)-<YearEnd: n=2, month=12>-(2, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[gregorian-(1, 1, 1, 5, 5, 5, 5)-<YearEnd: n=1, month=12>-(1, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[gregorian-(1, 1, 1, 5, 5, 5, 5)-<YearEnd: n=2, month=12>-(2, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[gregorian-(1, 3, 1)-<YearEnd: n=-1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[gregorian-(2, 3, 1)-<YearEnd: n=-1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[julian-(1, 1, 1)-<YearEnd: n=1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[julian-(1, 1, 1)-<YearEnd: n=1, month=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[julian-(1, 1, 1)-<YearEnd: n=2, month=12>-(2, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[julian-(1, 1, 1, 5, 5, 5, 5)-<YearEnd: n=1, month=12>-(1, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[julian-(1, 1, 1, 5, 5, 5, 5)-<YearEnd: n=2, month=12>-(2, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[julian-(1, 3, 1)-<YearEnd: n=-1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[julian-(2, 3, 1)-<YearEnd: n=-1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[proleptic_gregorian-(1, 1, 1)-<YearEnd: n=1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[proleptic_gregorian-(1, 1, 1)-<YearEnd: n=1, month=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[proleptic_gregorian-(1, 1, 1)-<YearEnd: n=2, month=12>-(2, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[proleptic_gregorian-(1, 1, 1, 5, 5, 5, 5)-<YearEnd: n=1, month=12>-(1, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[proleptic_gregorian-(1, 1, 1, 5, 5, 5, 5)-<YearEnd: n=2, month=12>-(2, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[proleptic_gregorian-(1, 3, 1)-<YearEnd: n=-1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[proleptic_gregorian-(2, 3, 1)-<YearEnd: n=-1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[standard-(1, 1, 1)-<YearEnd: n=1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[standard-(1, 1, 1)-<YearEnd: n=1, month=1>-(1, 1)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[standard-(1, 1, 1)-<YearEnd: n=2, month=12>-(2, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[standard-(1, 1, 1, 5, 5, 5, 5)-<YearEnd: n=1, month=12>-(1, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[standard-(1, 1, 1, 5, 5, 5, 5)-<YearEnd: n=2, month=12>-(2, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[standard-(1, 3, 1)-<YearEnd: n=-1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end[standard-(2, 3, 1)-<YearEnd: n=-1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[360_day-(1, 1)-()-<YearEnd: n=1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[360_day-(1, 12)-()-<YearEnd: n=1, month=12>-(2, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[360_day-(1, 12)-()-<YearEnd: n=2, month=12>-(3, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[360_day-(1, 12)-(5, 5, 5, 5)-<YearEnd: n=1, month=12>-(2, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[360_day-(2, 12)-()-<YearEnd: n=-1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[360_day-(2, 12)-(5, 5, 5, 5)-<YearEnd: n=-1, month=12>-(1, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[360_day-(3, 12)-()-<YearEnd: n=-2, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[365_day-(1, 1)-()-<YearEnd: n=1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[365_day-(1, 12)-()-<YearEnd: n=1, month=12>-(2, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[365_day-(1, 12)-()-<YearEnd: n=2, month=12>-(3, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[365_day-(1, 12)-(5, 5, 5, 5)-<YearEnd: n=1, month=12>-(2, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[365_day-(2, 12)-()-<YearEnd: n=-1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[365_day-(2, 12)-(5, 5, 5, 5)-<YearEnd: n=-1, month=12>-(1, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[365_day-(3, 12)-()-<YearEnd: n=-2, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[366_day-(1, 1)-()-<YearEnd: n=1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[366_day-(1, 12)-()-<YearEnd: n=1, month=12>-(2, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[366_day-(1, 12)-()-<YearEnd: n=2, month=12>-(3, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[366_day-(1, 12)-(5, 5, 5, 5)-<YearEnd: n=1, month=12>-(2, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[366_day-(2, 12)-()-<YearEnd: n=-1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[366_day-(2, 12)-(5, 5, 5, 5)-<YearEnd: n=-1, month=12>-(1, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[366_day-(3, 12)-()-<YearEnd: n=-2, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[all_leap-(1, 1)-()-<YearEnd: n=1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[all_leap-(1, 12)-()-<YearEnd: n=1, month=12>-(2, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[all_leap-(1, 12)-()-<YearEnd: n=2, month=12>-(3, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[all_leap-(1, 12)-(5, 5, 5, 5)-<YearEnd: n=1, month=12>-(2, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[all_leap-(2, 12)-()-<YearEnd: n=-1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[all_leap-(2, 12)-(5, 5, 5, 5)-<YearEnd: n=-1, month=12>-(1, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[all_leap-(3, 12)-()-<YearEnd: n=-2, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[gregorian-(1, 1)-()-<YearEnd: n=1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[gregorian-(1, 12)-()-<YearEnd: n=1, month=12>-(2, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[gregorian-(1, 12)-()-<YearEnd: n=2, month=12>-(3, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[gregorian-(1, 12)-(5, 5, 5, 5)-<YearEnd: n=1, month=12>-(2, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[gregorian-(2, 12)-()-<YearEnd: n=-1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[gregorian-(2, 12)-(5, 5, 5, 5)-<YearEnd: n=-1, month=12>-(1, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[gregorian-(3, 12)-()-<YearEnd: n=-2, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[julian-(1, 1)-()-<YearEnd: n=1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[julian-(1, 12)-()-<YearEnd: n=1, month=12>-(2, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[julian-(1, 12)-()-<YearEnd: n=2, month=12>-(3, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[julian-(1, 12)-(5, 5, 5, 5)-<YearEnd: n=1, month=12>-(2, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[julian-(2, 12)-()-<YearEnd: n=-1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[julian-(2, 12)-(5, 5, 5, 5)-<YearEnd: n=-1, month=12>-(1, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[julian-(3, 12)-()-<YearEnd: n=-2, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[proleptic_gregorian-(1, 1)-()-<YearEnd: n=1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[proleptic_gregorian-(1, 12)-()-<YearEnd: n=1, month=12>-(2, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[proleptic_gregorian-(1, 12)-()-<YearEnd: n=2, month=12>-(3, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[proleptic_gregorian-(1, 12)-(5, 5, 5, 5)-<YearEnd: n=1, month=12>-(2, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[proleptic_gregorian-(2, 12)-()-<YearEnd: n=-1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[proleptic_gregorian-(2, 12)-(5, 5, 5, 5)-<YearEnd: n=-1, month=12>-(1, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[proleptic_gregorian-(3, 12)-()-<YearEnd: n=-2, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[standard-(1, 1)-()-<YearEnd: n=1, month=2>-(1, 2)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[standard-(1, 12)-()-<YearEnd: n=1, month=12>-(2, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[standard-(1, 12)-()-<YearEnd: n=2, month=12>-(3, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[standard-(1, 12)-(5, 5, 5, 5)-<YearEnd: n=1, month=12>-(2, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[standard-(2, 12)-()-<YearEnd: n=-1, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[standard-(2, 12)-(5, 5, 5, 5)-<YearEnd: n=-1, month=12>-(1, 12)-(5, 5, 5, 5)]
xarray.tests.test_cftime_offsets ‑ test_add_year_end_onOffset[standard-(3, 12)-()-<YearEnd: n=-2, month=12>-(1, 12)-()]
xarray.tests.test_cftime_offsets ‑ test_calendar_specific_month_end[2M-360_day-[(2, 30), (4, 30), (6, 30), (8, 30), (10, 30), (12, 30)]]
xarray.tests.test_cftime_offsets ‑ test_calendar_specific_month_end[2M-all_leap-[(2, 29), (4, 30), (6, 30), (8, 31), (10, 31), (12, 31)]]
xarray.tests.test_cftime_offsets ‑ test_calendar_specific_month_end[2M-gregorian-[(2, 29), (4, 30), (6, 30), (8, 31), (10, 31), (12, 31)]]
xarray.tests.test_cftime_offsets ‑ test_calendar_specific_month_end[2M-julian-[(2, 29), (4, 30), (6, 30), (8, 31), (10, 31), (12, 31)]]
xarray.tests.test_cftime_offsets ‑ test_calendar_specific_month_end[2M-noleap-[(2, 28), (4, 30), (6, 30), (8, 31), (10, 31), (12, 31)]]
xarray.tests.test_cftime_offsets ‑ test_calendar_specific_month_end[2M-standard-[(2, 29), (4, 30), (6, 30), (8, 31), (10, 31), (12, 31)]]
xarray.tests.test_cftime_offsets ‑ test_calendar_year_length[360_day-2000-2001-360]
xarray.tests.test_cftime_offsets ‑ test_calendar_year_length[360_day-2001-2002-360]
xarray.tests.test_cftime_offsets ‑ test_calendar_year_length[all_leap-2000-2001-366]
xarray.tests.test_cftime_offsets ‑ test_calendar_year_length[all_leap-2001-2002-366]
xarray.tests.test_cftime_offsets ‑ test_calendar_year_length[gregorian-2000-2001-366]
xarray.tests.test_cftime_offsets ‑ test_calendar_year_length[gregorian-2001-2002-365]
xarray.tests.test_cftime_offsets ‑ test_calendar_year_length[julian-2000-2001-366]
xarray.tests.test_cftime_offsets ‑ test_calendar_year_length[julian-2001-2002-365]
xarray.tests.test_cftime_offsets ‑ test_calendar_year_length[noleap-2000-2001-365]
xarray.tests.test_cftime_offsets ‑ test_calendar_year_length[noleap-2001-2002-365]
xarray.tests.test_cftime_offsets ‑ test_calendar_year_length[standard-2000-2001-366]
xarray.tests.test_cftime_offsets ‑ test_calendar_year_length[standard-2001-2002-365]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_invalid_n[<class 'xarray.coding.cftime_offsets.BaseCFTimeOffset'>-1.5]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_invalid_n[<class 'xarray.coding.cftime_offsets.Day'>-1.5]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_invalid_n[<class 'xarray.coding.cftime_offsets.Hour'>-1.5]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_invalid_n[<class 'xarray.coding.cftime_offsets.Microsecond'>-1.5]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_invalid_n[<class 'xarray.coding.cftime_offsets.Millisecond'>-1.5]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_invalid_n[<class 'xarray.coding.cftime_offsets.Minute'>-1.5]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_invalid_n[<class 'xarray.coding.cftime_offsets.MonthBegin'>-1.5]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_invalid_n[<class 'xarray.coding.cftime_offsets.MonthEnd'>-1.5]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_invalid_n[<class 'xarray.coding.cftime_offsets.QuarterBegin'>-1.5]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_invalid_n[<class 'xarray.coding.cftime_offsets.QuarterEnd'>-1.5]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_invalid_n[<class 'xarray.coding.cftime_offsets.Second'>-1.5]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_invalid_n[<class 'xarray.coding.cftime_offsets.Tick'>-1.5]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_invalid_n[<class 'xarray.coding.cftime_offsets.YearBegin'>-1.5]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_invalid_n[<class 'xarray.coding.cftime_offsets.YearEnd'>-1.5]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<BaseCFTimeOffset: n=1>-1]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<BaseCFTimeOffset: n=2>-2]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<Day: n=1>-1]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<Day: n=2>-2]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<Hour: n=1>-1]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<Hour: n=2>-2]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<Microsecond: n=1>-1]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<Microsecond: n=2>-2]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<Millisecond: n=1>-1]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<Millisecond: n=2>-2]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<Minute: n=1>-1]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<Minute: n=2>-2]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<QuarterBegin: n=1, month=3>-1]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<QuarterBegin: n=2, month=3>-2]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<QuarterEnd: n=1, month=3>-1]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<QuarterEnd: n=2, month=3>-2]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<Second: n=1>-1]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<Second: n=2>-2]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<Tick: n=1>-1]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<Tick: n=2>-2]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<YearBegin: n=1, month=1>-1]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<YearBegin: n=2, month=1>-2]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<YearEnd: n=1, month=12>-1]
xarray.tests.test_cftime_offsets ‑ test_cftime_offset_constructor_valid_n[<YearEnd: n=2, month=12>-2]
xarray.tests.test_cftime_offsets ‑ test_cftime_or_date_range_closed[None-both-cftime_range]
xarray.tests.test_cftime_offsets ‑ test_cftime_or_date_range_closed[None-both-date_range]
xarray.tests.test_cftime_offsets ‑ test_cftime_or_date_range_closed[left-left-cftime_range]
xarray.tests.test_cftime_offsets ‑ test_cftime_or_date_range_closed[left-left-date_range]
xarray.tests.test_cftime_offsets ‑ test_cftime_or_date_range_closed[right-right-cftime_range]
xarray.tests.test_cftime_offsets ‑ test_cftime_or_date_range_closed[right-right-date_range]
xarray.tests.test_cftime_offsets ‑ test_cftime_or_date_range_closed_and_inclusive_error[cftime_range]
xarray.tests.test_cftime_offsets ‑ test_cftime_or_date_range_closed_and_inclusive_error[date_range]
xarray.tests.test_cftime_offsets ‑ test_cftime_or_date_range_inclusive_None[cftime_range]
xarray.tests.test_cftime_offsets ‑ test_cftime_or_date_range_inclusive_None[date_range]
xarray.tests.test_cftime_offsets ‑ test_cftime_or_date_range_invalid_closed_value[cftime_range]
xarray.tests.test_cftime_offsets ‑ test_cftime_or_date_range_invalid_closed_value[date_range]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[360_day-(1, 1, 1)-(1, 1, 4)-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[360_day-(1, 1, 1)-0001-01-04-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[360_day-0001-01-01 01:00:00-0001-01-04-None-D-both-False-[(1, 1, 1, 1), (1, 1, 2, 1), (1, 1, 3, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[360_day-0001-01-01-0001-01-04-4-None-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[360_day-0001-01-01-0001-01-04-None-D-None-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[360_day-0001-01-01-0001-01-04-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[360_day-0001-01-01-0001-01-04-None-D-left-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[360_day-0001-01-01-0001-01-04-None-D-neither-False-[(1, 1, 2), (1, 1, 3)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[360_day-0001-01-01-0001-01-04-None-D-right-False-[(1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[360_day-0001-01-01-None-4-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[360_day-0001-01-01T01:00:00-0001-01-04-None-D-both-False-[(1, 1, 1, 1), (1, 1, 2, 1), (1, 1, 3, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[360_day-0001-01-01T01:00:00-0001-01-04-None-D-both-True-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[360_day-0001-01-04-0001-01-01-None-D-both-False-[]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[360_day-0001-01-30-0011-02-01-None-3AS-JUN-both-False-[(1, 6, 1), (4, 6, 1), (7, 6, 1), (10, 6, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[360_day-0001-06-01-None-4-3QS-JUN-both-False-[(1, 6, 1), (2, 3, 1), (2, 12, 1), (3, 9, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[360_day-0010-None-4-<YearBegin: n=-2, month=1>-both-False-[(10, 1, 1), (8, 1, 1), (6, 1, 1), (4, 1, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[360_day-None-0001-01-04-4-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[365_day-(1, 1, 1)-(1, 1, 4)-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[365_day-(1, 1, 1)-0001-01-04-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[365_day-0001-01-01 01:00:00-0001-01-04-None-D-both-False-[(1, 1, 1, 1), (1, 1, 2, 1), (1, 1, 3, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[365_day-0001-01-01-0001-01-04-4-None-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[365_day-0001-01-01-0001-01-04-None-D-None-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[365_day-0001-01-01-0001-01-04-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[365_day-0001-01-01-0001-01-04-None-D-left-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[365_day-0001-01-01-0001-01-04-None-D-neither-False-[(1, 1, 2), (1, 1, 3)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[365_day-0001-01-01-0001-01-04-None-D-right-False-[(1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[365_day-0001-01-01-None-4-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[365_day-0001-01-01T01:00:00-0001-01-04-None-D-both-False-[(1, 1, 1, 1), (1, 1, 2, 1), (1, 1, 3, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[365_day-0001-01-01T01:00:00-0001-01-04-None-D-both-True-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[365_day-0001-01-04-0001-01-01-None-D-both-False-[]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[365_day-0001-01-30-0011-02-01-None-3AS-JUN-both-False-[(1, 6, 1), (4, 6, 1), (7, 6, 1), (10, 6, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[365_day-0001-06-01-None-4-3QS-JUN-both-False-[(1, 6, 1), (2, 3, 1), (2, 12, 1), (3, 9, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[365_day-0010-None-4-<YearBegin: n=-2, month=1>-both-False-[(10, 1, 1), (8, 1, 1), (6, 1, 1), (4, 1, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[365_day-None-0001-01-04-4-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[366_day-(1, 1, 1)-(1, 1, 4)-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[366_day-(1, 1, 1)-0001-01-04-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[366_day-0001-01-01 01:00:00-0001-01-04-None-D-both-False-[(1, 1, 1, 1), (1, 1, 2, 1), (1, 1, 3, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[366_day-0001-01-01-0001-01-04-4-None-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[366_day-0001-01-01-0001-01-04-None-D-None-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[366_day-0001-01-01-0001-01-04-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[366_day-0001-01-01-0001-01-04-None-D-left-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[366_day-0001-01-01-0001-01-04-None-D-neither-False-[(1, 1, 2), (1, 1, 3)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[366_day-0001-01-01-0001-01-04-None-D-right-False-[(1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[366_day-0001-01-01-None-4-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[366_day-0001-01-01T01:00:00-0001-01-04-None-D-both-False-[(1, 1, 1, 1), (1, 1, 2, 1), (1, 1, 3, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[366_day-0001-01-01T01:00:00-0001-01-04-None-D-both-True-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[366_day-0001-01-04-0001-01-01-None-D-both-False-[]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[366_day-0001-01-30-0011-02-01-None-3AS-JUN-both-False-[(1, 6, 1), (4, 6, 1), (7, 6, 1), (10, 6, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[366_day-0001-06-01-None-4-3QS-JUN-both-False-[(1, 6, 1), (2, 3, 1), (2, 12, 1), (3, 9, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[366_day-0010-None-4-<YearBegin: n=-2, month=1>-both-False-[(10, 1, 1), (8, 1, 1), (6, 1, 1), (4, 1, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[366_day-None-0001-01-04-4-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[all_leap-(1, 1, 1)-(1, 1, 4)-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[all_leap-(1, 1, 1)-0001-01-04-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[all_leap-0001-01-01 01:00:00-0001-01-04-None-D-both-False-[(1, 1, 1, 1), (1, 1, 2, 1), (1, 1, 3, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[all_leap-0001-01-01-0001-01-04-4-None-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[all_leap-0001-01-01-0001-01-04-None-D-None-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[all_leap-0001-01-01-0001-01-04-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[all_leap-0001-01-01-0001-01-04-None-D-left-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[all_leap-0001-01-01-0001-01-04-None-D-neither-False-[(1, 1, 2), (1, 1, 3)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[all_leap-0001-01-01-0001-01-04-None-D-right-False-[(1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[all_leap-0001-01-01-None-4-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[all_leap-0001-01-01T01:00:00-0001-01-04-None-D-both-False-[(1, 1, 1, 1), (1, 1, 2, 1), (1, 1, 3, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[all_leap-0001-01-01T01:00:00-0001-01-04-None-D-both-True-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[all_leap-0001-01-04-0001-01-01-None-D-both-False-[]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[all_leap-0001-01-30-0011-02-01-None-3AS-JUN-both-False-[(1, 6, 1), (4, 6, 1), (7, 6, 1), (10, 6, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[all_leap-0001-06-01-None-4-3QS-JUN-both-False-[(1, 6, 1), (2, 3, 1), (2, 12, 1), (3, 9, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[all_leap-0010-None-4-<YearBegin: n=-2, month=1>-both-False-[(10, 1, 1), (8, 1, 1), (6, 1, 1), (4, 1, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[all_leap-None-0001-01-04-4-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[gregorian-(1, 1, 1)-(1, 1, 4)-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[gregorian-(1, 1, 1)-0001-01-04-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[gregorian-0001-01-01 01:00:00-0001-01-04-None-D-both-False-[(1, 1, 1, 1), (1, 1, 2, 1), (1, 1, 3, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[gregorian-0001-01-01-0001-01-04-4-None-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[gregorian-0001-01-01-0001-01-04-None-D-None-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[gregorian-0001-01-01-0001-01-04-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[gregorian-0001-01-01-0001-01-04-None-D-left-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[gregorian-0001-01-01-0001-01-04-None-D-neither-False-[(1, 1, 2), (1, 1, 3)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[gregorian-0001-01-01-0001-01-04-None-D-right-False-[(1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[gregorian-0001-01-01-None-4-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[gregorian-0001-01-01T01:00:00-0001-01-04-None-D-both-False-[(1, 1, 1, 1), (1, 1, 2, 1), (1, 1, 3, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[gregorian-0001-01-01T01:00:00-0001-01-04-None-D-both-True-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[gregorian-0001-01-04-0001-01-01-None-D-both-False-[]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[gregorian-0001-01-30-0011-02-01-None-3AS-JUN-both-False-[(1, 6, 1), (4, 6, 1), (7, 6, 1), (10, 6, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[gregorian-0001-06-01-None-4-3QS-JUN-both-False-[(1, 6, 1), (2, 3, 1), (2, 12, 1), (3, 9, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[gregorian-0010-None-4-<YearBegin: n=-2, month=1>-both-False-[(10, 1, 1), (8, 1, 1), (6, 1, 1), (4, 1, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[gregorian-None-0001-01-04-4-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[julian-(1, 1, 1)-(1, 1, 4)-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[julian-(1, 1, 1)-0001-01-04-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[julian-0001-01-01 01:00:00-0001-01-04-None-D-both-False-[(1, 1, 1, 1), (1, 1, 2, 1), (1, 1, 3, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[julian-0001-01-01-0001-01-04-4-None-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[julian-0001-01-01-0001-01-04-None-D-None-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[julian-0001-01-01-0001-01-04-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[julian-0001-01-01-0001-01-04-None-D-left-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[julian-0001-01-01-0001-01-04-None-D-neither-False-[(1, 1, 2), (1, 1, 3)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[julian-0001-01-01-0001-01-04-None-D-right-False-[(1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[julian-0001-01-01-None-4-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[julian-0001-01-01T01:00:00-0001-01-04-None-D-both-False-[(1, 1, 1, 1), (1, 1, 2, 1), (1, 1, 3, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[julian-0001-01-01T01:00:00-0001-01-04-None-D-both-True-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[julian-0001-01-04-0001-01-01-None-D-both-False-[]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[julian-0001-01-30-0011-02-01-None-3AS-JUN-both-False-[(1, 6, 1), (4, 6, 1), (7, 6, 1), (10, 6, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[julian-0001-06-01-None-4-3QS-JUN-both-False-[(1, 6, 1), (2, 3, 1), (2, 12, 1), (3, 9, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[julian-0010-None-4-<YearBegin: n=-2, month=1>-both-False-[(10, 1, 1), (8, 1, 1), (6, 1, 1), (4, 1, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[julian-None-0001-01-04-4-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[proleptic_gregorian-(1, 1, 1)-(1, 1, 4)-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[proleptic_gregorian-(1, 1, 1)-0001-01-04-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[proleptic_gregorian-0001-01-01 01:00:00-0001-01-04-None-D-both-False-[(1, 1, 1, 1), (1, 1, 2, 1), (1, 1, 3, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[proleptic_gregorian-0001-01-01-0001-01-04-4-None-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[proleptic_gregorian-0001-01-01-0001-01-04-None-D-None-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[proleptic_gregorian-0001-01-01-0001-01-04-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[proleptic_gregorian-0001-01-01-0001-01-04-None-D-left-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[proleptic_gregorian-0001-01-01-0001-01-04-None-D-neither-False-[(1, 1, 2), (1, 1, 3)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[proleptic_gregorian-0001-01-01-0001-01-04-None-D-right-False-[(1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[proleptic_gregorian-0001-01-01-None-4-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[proleptic_gregorian-0001-01-01T01:00:00-0001-01-04-None-D-both-False-[(1, 1, 1, 1), (1, 1, 2, 1), (1, 1, 3, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[proleptic_gregorian-0001-01-01T01:00:00-0001-01-04-None-D-both-True-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[proleptic_gregorian-0001-01-04-0001-01-01-None-D-both-False-[]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[proleptic_gregorian-0001-01-30-0011-02-01-None-3AS-JUN-both-False-[(1, 6, 1), (4, 6, 1), (7, 6, 1), (10, 6, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[proleptic_gregorian-0001-06-01-None-4-3QS-JUN-both-False-[(1, 6, 1), (2, 3, 1), (2, 12, 1), (3, 9, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[proleptic_gregorian-0010-None-4-<YearBegin: n=-2, month=1>-both-False-[(10, 1, 1), (8, 1, 1), (6, 1, 1), (4, 1, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[proleptic_gregorian-None-0001-01-04-4-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[standard-(1, 1, 1)-(1, 1, 4)-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[standard-(1, 1, 1)-0001-01-04-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[standard-0001-01-01 01:00:00-0001-01-04-None-D-both-False-[(1, 1, 1, 1), (1, 1, 2, 1), (1, 1, 3, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[standard-0001-01-01-0001-01-04-4-None-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[standard-0001-01-01-0001-01-04-None-D-None-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[standard-0001-01-01-0001-01-04-None-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[standard-0001-01-01-0001-01-04-None-D-left-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[standard-0001-01-01-0001-01-04-None-D-neither-False-[(1, 1, 2), (1, 1, 3)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[standard-0001-01-01-0001-01-04-None-D-right-False-[(1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[standard-0001-01-01-None-4-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[standard-0001-01-01T01:00:00-0001-01-04-None-D-both-False-[(1, 1, 1, 1), (1, 1, 2, 1), (1, 1, 3, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[standard-0001-01-01T01:00:00-0001-01-04-None-D-both-True-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[standard-0001-01-04-0001-01-01-None-D-both-False-[]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[standard-0001-01-30-0011-02-01-None-3AS-JUN-both-False-[(1, 6, 1), (4, 6, 1), (7, 6, 1), (10, 6, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[standard-0001-06-01-None-4-3QS-JUN-both-False-[(1, 6, 1), (2, 3, 1), (2, 12, 1), (3, 9, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[standard-0010-None-4-<YearBegin: n=-2, month=1>-both-False-[(10, 1, 1), (8, 1, 1), (6, 1, 1), (4, 1, 1)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range[standard-None-0001-01-04-4-D-both-False-[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)]]
xarray.tests.test_cftime_offsets ‑ test_cftime_range_name
xarray.tests.test_cftime_offsets ‑ test_cftime_range_standard_calendar_refers_to_gregorian
xarray.tests.test_cftime_offsets ‑ test_date_range[1400-01-01-standard-None-CFTimeIndex]
xarray.tests.test_cftime_offsets ‑ test_date_range[1990-01-01-gregorian-False-DatetimeIndex]
xarray.tests.test_cftime_offsets ‑ test_date_range[1990-01-01-noleap-None-CFTimeIndex]
xarray.tests.test_cftime_offsets ‑ test_date_range[1990-01-01-proleptic_gregorian-True-CFTimeIndex]
xarray.tests.test_cftime_offsets ‑ test_date_range[1990-01-01-standard-None-DatetimeIndex]
xarray.tests.test_cftime_offsets ‑ test_date_range[3400-01-01-standard-None-CFTimeIndex]
xarray.tests.test_cftime_offsets ‑ test_date_range_errors
xarray.tests.test_cftime_offsets ‑ test_date_range_like[2020-02-01-4M-standard-noleap-None-2020-02-28-False]
xarray.tests.test_cftime_offsets ‑ test_date_range_like[2020-02-01-M-noleap-gregorian-True-2020-02-29-True]
xarray.tests.test_cftime_offsets ‑ test_date_range_like[2020-02-28-3H-all_leap-gregorian-False-2020-02-28-True]
xarray.tests.test_cftime_offsets ‑ test_date_range_like[2020-03-30-M-360_day-gregorian-False-2020-03-31-True]
xarray.tests.test_cftime_offsets ‑ test_date_range_like[2020-03-31-M-gregorian-360_day-None-2020-03-30-False]
xarray.tests.test_cftime_offsets ‑ test_date_range_like_errors
xarray.tests.test_cftime_offsets ‑ test_date_range_like_same_calendar
xarray.tests.test_cftime_offsets ‑ test_dayofweek_after_cftime_range[A]
xarray.tests.test_cftime_offsets ‑ test_dayofweek_after_cftime_range[D]
xarray.tests.test_cftime_offsets ‑ test_dayofweek_after_cftime_range[M]
xarray.tests.test_cftime_offsets ‑ test_dayofyear_after_cftime_range[A]
xarray.tests.test_cftime_offsets ‑ test_dayofyear_after_cftime_range[D]
xarray.tests.test_cftime_offsets ‑ test_dayofyear_after_cftime_range[M]
xarray.tests.test_cftime_offsets ‑ test_days_in_month_december[360_day]
xarray.tests.test_cftime_offsets ‑ test_days_in_month_december[365_day]
xarray.tests.test_cftime_offsets ‑ test_days_in_month_december[366_day]
xarray.tests.test_cftime_offsets ‑ test_days_in_month_december[all_leap]
xarray.tests.test_cftime_offsets ‑ test_days_in_month_december[gregorian]
xarray.tests.test_cftime_offsets ‑ test_days_in_month_december[julian]
xarray.tests.test_cftime_offsets ‑ test_days_in_month_december[proleptic_gregorian]
xarray.tests.test_cftime_offsets ‑ test_days_in_month_december[standard]
xarray.tests.test_cftime_offsets ‑ test_days_in_month_non_december[360_day]
xarray.tests.test_cftime_offsets ‑ test_days_in_month_non_december[365_day]
xarray.tests.test_cftime_offsets ‑ test_days_in_month_non_december[366_day]
xarray.tests.test_cftime_offsets ‑ test_days_in_month_non_december[all_leap]
xarray.tests.test_cftime_offsets ‑ test_days_in_month_non_december[gregorian]
xarray.tests.test_cftime_offsets ‑ test_days_in_month_non_december[julian]
xarray.tests.test_cftime_offsets ‑ test_days_in_month_non_december[proleptic_gregorian]
xarray.tests.test_cftime_offsets ‑ test_days_in_month_non_december[standard]
xarray.tests.test_cftime_offsets ‑ test_eq[<BaseCFTimeOffset: n=2>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_eq[<Day: n=2>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_eq[<Hour: n=2>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_eq[<Microsecond: n=2>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_eq[<Millisecond: n=2>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_eq[<Minute: n=2>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_eq[<MonthBegin: n=2>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_eq[<MonthEnd: n=2>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_eq[<QuarterBegin: n=2, month=2>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_eq[<QuarterBegin: n=2, month=3>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_eq[<QuarterEnd: n=2, month=2>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_eq[<QuarterEnd: n=2, month=3>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_eq[<Second: n=2>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_eq[<YearBegin: n=2, month=1>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_eq[<YearBegin: n=2, month=2>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_eq[<YearEnd: n=2, month=12>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_eq[<YearEnd: n=2, month=2>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_invalid_cftime_range_inputs[2000-2001-5-A-None]
xarray.tests.test_cftime_offsets ‑ test_invalid_cftime_range_inputs[2000-2001-None-A-up]
xarray.tests.test_cftime_offsets ‑ test_invalid_cftime_range_inputs[2000-2001-None-None-None]
xarray.tests.test_cftime_offsets ‑ test_invalid_cftime_range_inputs[2000-None-None-A-None]
xarray.tests.test_cftime_offsets ‑ test_invalid_cftime_range_inputs[None-2000-None-A-None]
xarray.tests.test_cftime_offsets ‑ test_invalid_cftime_range_inputs[None-None-5-A-None]
xarray.tests.test_cftime_offsets ‑ test_invalid_cftime_range_inputs[None-None-None-None-None]
xarray.tests.test_cftime_offsets ‑ test_invalid_to_offset_str[1H1min]
xarray.tests.test_cftime_offsets ‑ test_invalid_to_offset_str[7min2]
xarray.tests.test_cftime_offsets ‑ test_invalid_to_offset_str[AM]
xarray.tests.test_cftime_offsets ‑ test_invalid_to_offset_str[AS-]
xarray.tests.test_cftime_offsets ‑ test_invalid_to_offset_str[M-]
xarray.tests.test_cftime_offsets ‑ test_invalid_to_offset_str[QS-]
xarray.tests.test_cftime_offsets ‑ test_invalid_to_offset_str[Z]
xarray.tests.test_cftime_offsets ‑ test_minus_offset[<BaseCFTimeOffset: n=1>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset[<Day: n=1>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset[<Hour: n=1>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset[<Microsecond: n=1>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset[<Millisecond: n=1>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset[<Minute: n=1>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset[<MonthBegin: n=1>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset[<MonthEnd: n=1>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset[<QuarterBegin: n=1, month=2>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset[<QuarterBegin: n=1, month=3>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset[<QuarterEnd: n=1, month=2>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset[<QuarterEnd: n=1, month=3>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset[<Second: n=1>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset[<YearBegin: n=1, month=1>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset[<YearBegin: n=1, month=2>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset[<YearEnd: n=1, month=12>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset[<YearEnd: n=1, month=2>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset_error[<BaseCFTimeOffset: n=1>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset_error[<Day: n=1>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset_error[<Hour: n=1>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset_error[<Microsecond: n=1>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset_error[<Millisecond: n=1>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset_error[<Minute: n=1>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset_error[<MonthBegin: n=1>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset_error[<MonthEnd: n=1>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset_error[<QuarterBegin: n=1, month=2>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset_error[<QuarterBegin: n=1, month=3>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset_error[<QuarterEnd: n=1, month=2>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset_error[<QuarterEnd: n=1, month=3>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset_error[<Second: n=1>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset_error[<YearBegin: n=1, month=1>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset_error[<YearBegin: n=1, month=2>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset_error[<YearEnd: n=1, month=12>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset_error[<YearEnd: n=1, month=1>-<YearEnd: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_minus_offset_error[<YearEnd: n=1, month=2>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_mul[<BaseCFTimeOffset: n=1>-3-<BaseCFTimeOffset: n=3>]
xarray.tests.test_cftime_offsets ‑ test_mul[<Day: n=1>-0.5-<Hour: n=12>]
xarray.tests.test_cftime_offsets ‑ test_mul[<Day: n=1>-3-<Day: n=3>]
xarray.tests.test_cftime_offsets ‑ test_mul[<Hour: n=1>-0.5-<Minute: n=30>]
xarray.tests.test_cftime_offsets ‑ test_mul[<Hour: n=1>-3-<Hour: n=3>]
xarray.tests.test_cftime_offsets ‑ test_mul[<Microsecond: n=1>-3-<Microsecond: n=3>]
xarray.tests.test_cftime_offsets ‑ test_mul[<Millisecond: n=1>-0.5-<Microsecond: n=500>]
xarray.tests.test_cftime_offsets ‑ test_mul[<Millisecond: n=1>-3-<Millisecond: n=3>]
xarray.tests.test_cftime_offsets ‑ test_mul[<Minute: n=1>-0.5-<Second: n=30>]
xarray.tests.test_cftime_offsets ‑ test_mul[<Minute: n=1>-3-<Minute: n=3>]
xarray.tests.test_cftime_offsets ‑ test_mul[<MonthBegin: n=1>-3-<MonthBegin: n=3>]
xarray.tests.test_cftime_offsets ‑ test_mul[<MonthEnd: n=1>-3-<MonthEnd: n=3>]
xarray.tests.test_cftime_offsets ‑ test_mul[<QuarterBegin: n=1, month=3>-3-<QuarterBegin: n=3, month=3>]
xarray.tests.test_cftime_offsets ‑ test_mul[<QuarterEnd: n=1, month=3>-3-<QuarterEnd: n=3, month=3>]
xarray.tests.test_cftime_offsets ‑ test_mul[<Second: n=1>-0.5-<Millisecond: n=500>]
xarray.tests.test_cftime_offsets ‑ test_mul[<Second: n=1>-3-<Second: n=3>]
xarray.tests.test_cftime_offsets ‑ test_mul[<Tick: n=1>-3-<Tick: n=3>]
xarray.tests.test_cftime_offsets ‑ test_mul[<YearBegin: n=1, month=1>-3-<YearBegin: n=3, month=1>]
xarray.tests.test_cftime_offsets ‑ test_mul[<YearEnd: n=1, month=12>-3-<YearEnd: n=3, month=12>]
xarray.tests.test_cftime_offsets ‑ test_mul_float_multiple_next_higher_resolution
xarray.tests.test_cftime_offsets ‑ test_neg[<BaseCFTimeOffset: n=1>-<BaseCFTimeOffset: n=-1>]
xarray.tests.test_cftime_offsets ‑ test_neg[<Day: n=1>-<Day: n=-1>]
xarray.tests.test_cftime_offsets ‑ test_neg[<Hour: n=1>-<Hour: n=-1>]
xarray.tests.test_cftime_offsets ‑ test_neg[<Microsecond: n=1>-<Microsecond: n=-1>]
xarray.tests.test_cftime_offsets ‑ test_neg[<Millisecond: n=1>-<Millisecond: n=-1>]
xarray.tests.test_cftime_offsets ‑ test_neg[<Minute: n=1>-<Minute: n=-1>]
xarray.tests.test_cftime_offsets ‑ test_neg[<MonthBegin: n=1>-<MonthBegin: n=-1>]
xarray.tests.test_cftime_offsets ‑ test_neg[<MonthEnd: n=1>-<MonthEnd: n=-1>]
xarray.tests.test_cftime_offsets ‑ test_neg[<QuarterBegin: n=1, month=3>-<QuarterBegin: n=-1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neg[<QuarterEnd: n=1, month=3>-<QuarterEnd: n=-1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neg[<Second: n=1>-<Second: n=-1>]
xarray.tests.test_cftime_offsets ‑ test_neg[<YearBegin: n=1, month=1>-<YearBegin: n=-1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_neg[<YearEnd: n=1, month=12>-<YearEnd: n=-1, month=12>]
xarray.tests.test_cftime_offsets ‑ test_neq[<BaseCFTimeOffset: n=1>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<BaseCFTimeOffset: n=1>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<BaseCFTimeOffset: n=1>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<BaseCFTimeOffset: n=1>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<BaseCFTimeOffset: n=1>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<BaseCFTimeOffset: n=1>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<BaseCFTimeOffset: n=1>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<BaseCFTimeOffset: n=1>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<BaseCFTimeOffset: n=1>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<BaseCFTimeOffset: n=1>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<BaseCFTimeOffset: n=1>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<BaseCFTimeOffset: n=1>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<BaseCFTimeOffset: n=1>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<BaseCFTimeOffset: n=1>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_neq[<BaseCFTimeOffset: n=1>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<BaseCFTimeOffset: n=1>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_neq[<BaseCFTimeOffset: n=1>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Day: n=1>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Day: n=1>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Day: n=1>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Day: n=1>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Day: n=1>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Day: n=1>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Day: n=1>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Day: n=1>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Day: n=1>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Day: n=1>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Day: n=1>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Day: n=1>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Day: n=1>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Day: n=1>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Day: n=1>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Day: n=1>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Day: n=1>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Hour: n=1>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Hour: n=1>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Hour: n=1>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Hour: n=1>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Hour: n=1>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Hour: n=1>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Hour: n=1>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Hour: n=1>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Hour: n=1>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Hour: n=1>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Hour: n=1>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Hour: n=1>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Hour: n=1>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Hour: n=1>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Hour: n=1>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Hour: n=1>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Hour: n=1>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Microsecond: n=1>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Microsecond: n=1>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Microsecond: n=1>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Microsecond: n=1>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Microsecond: n=1>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Microsecond: n=1>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Microsecond: n=1>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Microsecond: n=1>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Microsecond: n=1>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Microsecond: n=1>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Microsecond: n=1>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Microsecond: n=1>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Microsecond: n=1>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Microsecond: n=1>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Microsecond: n=1>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Microsecond: n=1>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Microsecond: n=1>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Millisecond: n=1>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Millisecond: n=1>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Millisecond: n=1>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Millisecond: n=1>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Millisecond: n=1>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Millisecond: n=1>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Millisecond: n=1>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Millisecond: n=1>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Millisecond: n=1>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Millisecond: n=1>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Millisecond: n=1>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Millisecond: n=1>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Millisecond: n=1>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Millisecond: n=1>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Millisecond: n=1>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Millisecond: n=1>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Millisecond: n=1>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Minute: n=1>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Minute: n=1>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Minute: n=1>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Minute: n=1>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Minute: n=1>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Minute: n=1>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Minute: n=1>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Minute: n=1>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Minute: n=1>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Minute: n=1>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Minute: n=1>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Minute: n=1>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Minute: n=1>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Minute: n=1>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Minute: n=1>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Minute: n=1>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Minute: n=1>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthBegin: n=1>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthBegin: n=1>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthBegin: n=1>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthBegin: n=1>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthBegin: n=1>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthBegin: n=1>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthBegin: n=1>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthBegin: n=1>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthBegin: n=1>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthBegin: n=1>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthBegin: n=1>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthBegin: n=1>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthBegin: n=1>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthBegin: n=1>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthBegin: n=1>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthBegin: n=1>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthBegin: n=1>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthEnd: n=1>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthEnd: n=1>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthEnd: n=1>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthEnd: n=1>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthEnd: n=1>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthEnd: n=1>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthEnd: n=1>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthEnd: n=1>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthEnd: n=1>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthEnd: n=1>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthEnd: n=1>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthEnd: n=1>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthEnd: n=1>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthEnd: n=1>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthEnd: n=1>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthEnd: n=1>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_neq[<MonthEnd: n=1>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=2>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=2>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=2>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=2>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=2>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=2>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=2>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=2>-<MonthEnd: n=2>]

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

18042 tests found (test 3436 to 4064)

There are 18042 tests, see "Raw output" for the list of tests 3436 to 4064.
Raw output
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=2>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=2>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=2>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=2>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=2>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=2>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=2>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=2>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=2>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=3>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=3>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=3>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=3>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=3>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=3>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=3>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=3>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=3>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=3>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=3>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=3>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=3>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=3>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=3>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=3>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterBegin: n=1, month=3>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=2>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=2>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=2>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=2>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=2>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=2>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=2>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=2>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=2>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=2>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=2>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=2>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=2>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=2>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=2>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=2>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=2>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=3>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=3>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=3>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=3>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=3>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=3>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=3>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=3>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=3>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=3>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=3>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=3>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=3>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=3>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=3>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=3>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_neq[<QuarterEnd: n=1, month=3>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Second: n=1>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Second: n=1>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Second: n=1>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Second: n=1>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Second: n=1>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Second: n=1>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Second: n=1>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Second: n=1>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Second: n=1>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Second: n=1>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Second: n=1>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Second: n=1>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Second: n=1>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Second: n=1>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Second: n=1>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Second: n=1>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_neq[<Second: n=1>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=1>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=1>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=1>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=1>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=1>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=1>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=1>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=1>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=1>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=1>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=1>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=1>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=1>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=1>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=1>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=1>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=1>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=2>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=2>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=2>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=2>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=2>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=2>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=2>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=2>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=2>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=2>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=2>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=2>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=2>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=2>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=2>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=2>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearBegin: n=1, month=2>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=12>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=12>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=12>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=12>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=12>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=12>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=12>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=12>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=12>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=12>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=12>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=12>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=12>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=12>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=12>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=12>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=12>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=2>-<BaseCFTimeOffset: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=2>-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=2>-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=2>-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=2>-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=2>-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=2>-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=2>-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=2>-<QuarterBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=2>-<QuarterBegin: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=2>-<QuarterEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=2>-<QuarterEnd: n=2, month=3>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=2>-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=2>-<YearBegin: n=2, month=1>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=2>-<YearBegin: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=2>-<YearEnd: n=2, month=12>]
xarray.tests.test_cftime_offsets ‑ test_neq[<YearEnd: n=1, month=2>-<YearEnd: n=2, month=2>]
xarray.tests.test_cftime_offsets ‑ test_nonTick_offset_multiplied_float_error[<MonthBegin: n=1>]
xarray.tests.test_cftime_offsets ‑ test_nonTick_offset_multiplied_float_error[<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_nonTick_offset_multiplied_float_error[<QuarterBegin: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_nonTick_offset_multiplied_float_error[<QuarterEnd: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_nonTick_offset_multiplied_float_error[<YearBegin: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_nonTick_offset_multiplied_float_error[<YearEnd: n=1, month=12>]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 1, 1)-<Day: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 1, 1)-<Hour: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 1, 1)-<Microsecond: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 1, 1)-<Millisecond: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 1, 1)-<Minute: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 1, 1)-<MonthBegin: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 1, 1)-<Second: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 1, 1)-<YearBegin: n=1, month=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 1, 1, 1)-<Day: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 1, 1, 1)-<MonthBegin: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 1, 1, 1)-<YearBegin: n=1, month=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 1, 5)-<MonthBegin: n=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 1, 5)-<MonthEnd: n=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 1, 5)-<YearBegin: n=1, month=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 12, 1)-<QuarterEnd: n=1, month=3>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 12, 1)-<YearEnd: n=1, month=12>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 3, 1)-<QuarterBegin: n=1, month=3>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 3, 1, 1)-<QuarterBegin: n=1, month=3>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[360_day-(1, 3, 5)-<QuarterBegin: n=1, month=3>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 1, 1)-<Day: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 1, 1)-<Hour: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 1, 1)-<Microsecond: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 1, 1)-<Millisecond: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 1, 1)-<Minute: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 1, 1)-<MonthBegin: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 1, 1)-<Second: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 1, 1)-<YearBegin: n=1, month=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 1, 1, 1)-<Day: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 1, 1, 1)-<MonthBegin: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 1, 1, 1)-<YearBegin: n=1, month=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 1, 5)-<MonthBegin: n=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 1, 5)-<MonthEnd: n=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 1, 5)-<YearBegin: n=1, month=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 12, 1)-<QuarterEnd: n=1, month=3>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 12, 1)-<YearEnd: n=1, month=12>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 3, 1)-<QuarterBegin: n=1, month=3>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 3, 1, 1)-<QuarterBegin: n=1, month=3>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[365_day-(1, 3, 5)-<QuarterBegin: n=1, month=3>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 1, 1)-<Day: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 1, 1)-<Hour: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 1, 1)-<Microsecond: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 1, 1)-<Millisecond: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 1, 1)-<Minute: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 1, 1)-<MonthBegin: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 1, 1)-<Second: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 1, 1)-<YearBegin: n=1, month=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 1, 1, 1)-<Day: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 1, 1, 1)-<MonthBegin: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 1, 1, 1)-<YearBegin: n=1, month=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 1, 5)-<MonthBegin: n=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 1, 5)-<MonthEnd: n=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 1, 5)-<YearBegin: n=1, month=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 12, 1)-<QuarterEnd: n=1, month=3>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 12, 1)-<YearEnd: n=1, month=12>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 3, 1)-<QuarterBegin: n=1, month=3>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 3, 1, 1)-<QuarterBegin: n=1, month=3>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[366_day-(1, 3, 5)-<QuarterBegin: n=1, month=3>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 1, 1)-<Day: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 1, 1)-<Hour: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 1, 1)-<Microsecond: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 1, 1)-<Millisecond: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 1, 1)-<Minute: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 1, 1)-<MonthBegin: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 1, 1)-<Second: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 1, 1)-<YearBegin: n=1, month=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 1, 1, 1)-<Day: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 1, 1, 1)-<MonthBegin: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 1, 1, 1)-<YearBegin: n=1, month=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 1, 5)-<MonthBegin: n=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 1, 5)-<MonthEnd: n=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 1, 5)-<YearBegin: n=1, month=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 12, 1)-<QuarterEnd: n=1, month=3>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 12, 1)-<YearEnd: n=1, month=12>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 3, 1)-<QuarterBegin: n=1, month=3>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 3, 1, 1)-<QuarterBegin: n=1, month=3>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[all_leap-(1, 3, 5)-<QuarterBegin: n=1, month=3>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 1, 1)-<Day: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 1, 1)-<Hour: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 1, 1)-<Microsecond: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 1, 1)-<Millisecond: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 1, 1)-<Minute: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 1, 1)-<MonthBegin: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 1, 1)-<Second: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 1, 1)-<YearBegin: n=1, month=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 1, 1, 1)-<Day: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 1, 1, 1)-<MonthBegin: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 1, 1, 1)-<YearBegin: n=1, month=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 1, 5)-<MonthBegin: n=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 1, 5)-<MonthEnd: n=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 1, 5)-<YearBegin: n=1, month=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 12, 1)-<QuarterEnd: n=1, month=3>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 12, 1)-<YearEnd: n=1, month=12>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 3, 1)-<QuarterBegin: n=1, month=3>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 3, 1, 1)-<QuarterBegin: n=1, month=3>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[gregorian-(1, 3, 5)-<QuarterBegin: n=1, month=3>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 1, 1)-<Day: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 1, 1)-<Hour: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 1, 1)-<Microsecond: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 1, 1)-<Millisecond: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 1, 1)-<Minute: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 1, 1)-<MonthBegin: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 1, 1)-<Second: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 1, 1)-<YearBegin: n=1, month=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 1, 1, 1)-<Day: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 1, 1, 1)-<MonthBegin: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 1, 1, 1)-<YearBegin: n=1, month=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 1, 5)-<MonthBegin: n=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 1, 5)-<MonthEnd: n=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 1, 5)-<YearBegin: n=1, month=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 12, 1)-<QuarterEnd: n=1, month=3>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 12, 1)-<YearEnd: n=1, month=12>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 3, 1)-<QuarterBegin: n=1, month=3>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 3, 1, 1)-<QuarterBegin: n=1, month=3>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[julian-(1, 3, 5)-<QuarterBegin: n=1, month=3>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 1, 1)-<Day: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 1, 1)-<Hour: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 1, 1)-<Microsecond: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 1, 1)-<Millisecond: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 1, 1)-<Minute: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 1, 1)-<MonthBegin: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 1, 1)-<Second: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 1, 1)-<YearBegin: n=1, month=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 1, 1, 1)-<Day: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 1, 1, 1)-<MonthBegin: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 1, 1, 1)-<YearBegin: n=1, month=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 1, 5)-<MonthBegin: n=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 1, 5)-<MonthEnd: n=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 1, 5)-<YearBegin: n=1, month=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 12, 1)-<QuarterEnd: n=1, month=3>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 12, 1)-<YearEnd: n=1, month=12>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 3, 1)-<QuarterBegin: n=1, month=3>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 3, 1, 1)-<QuarterBegin: n=1, month=3>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[proleptic_gregorian-(1, 3, 5)-<QuarterBegin: n=1, month=3>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 1, 1)-<Day: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 1, 1)-<Hour: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 1, 1)-<Microsecond: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 1, 1)-<Millisecond: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 1, 1)-<Minute: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 1, 1)-<MonthBegin: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 1, 1)-<Second: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 1, 1)-<YearBegin: n=1, month=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 1, 1, 1)-<Day: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 1, 1, 1)-<MonthBegin: n=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 1, 1, 1)-<YearBegin: n=1, month=1>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 1, 5)-<MonthBegin: n=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 1, 5)-<MonthEnd: n=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 1, 5)-<YearBegin: n=1, month=1>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 12, 1)-<QuarterEnd: n=1, month=3>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 12, 1)-<YearEnd: n=1, month=12>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 3, 1)-<QuarterBegin: n=1, month=3>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 3, 1, 1)-<QuarterBegin: n=1, month=3>-True]
xarray.tests.test_cftime_offsets ‑ test_onOffset[standard-(1, 3, 5)-<QuarterBegin: n=1, month=3>-False]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[360_day-(1, 1)-()-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[360_day-(1, 1)-()-<QuarterEnd: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[360_day-(1, 1)-()-<YearEnd: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[360_day-(1, 1)-(1,)-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[360_day-(1, 12)-()-<QuarterEnd: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[360_day-(1, 12)-()-<YearEnd: n=1, month=12>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[365_day-(1, 1)-()-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[365_day-(1, 1)-()-<QuarterEnd: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[365_day-(1, 1)-()-<YearEnd: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[365_day-(1, 1)-(1,)-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[365_day-(1, 12)-()-<QuarterEnd: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[365_day-(1, 12)-()-<YearEnd: n=1, month=12>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[366_day-(1, 1)-()-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[366_day-(1, 1)-()-<QuarterEnd: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[366_day-(1, 1)-()-<YearEnd: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[366_day-(1, 1)-(1,)-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[366_day-(1, 12)-()-<QuarterEnd: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[366_day-(1, 12)-()-<YearEnd: n=1, month=12>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[all_leap-(1, 1)-()-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[all_leap-(1, 1)-()-<QuarterEnd: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[all_leap-(1, 1)-()-<YearEnd: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[all_leap-(1, 1)-(1,)-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[all_leap-(1, 12)-()-<QuarterEnd: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[all_leap-(1, 12)-()-<YearEnd: n=1, month=12>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[gregorian-(1, 1)-()-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[gregorian-(1, 1)-()-<QuarterEnd: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[gregorian-(1, 1)-()-<YearEnd: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[gregorian-(1, 1)-(1,)-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[gregorian-(1, 12)-()-<QuarterEnd: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[gregorian-(1, 12)-()-<YearEnd: n=1, month=12>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[julian-(1, 1)-()-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[julian-(1, 1)-()-<QuarterEnd: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[julian-(1, 1)-()-<YearEnd: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[julian-(1, 1)-(1,)-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[julian-(1, 12)-()-<QuarterEnd: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[julian-(1, 12)-()-<YearEnd: n=1, month=12>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[proleptic_gregorian-(1, 1)-()-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[proleptic_gregorian-(1, 1)-()-<QuarterEnd: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[proleptic_gregorian-(1, 1)-()-<YearEnd: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[proleptic_gregorian-(1, 1)-(1,)-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[proleptic_gregorian-(1, 12)-()-<QuarterEnd: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[proleptic_gregorian-(1, 12)-()-<YearEnd: n=1, month=12>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[standard-(1, 1)-()-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[standard-(1, 1)-()-<QuarterEnd: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[standard-(1, 1)-()-<YearEnd: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[standard-(1, 1)-(1,)-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[standard-(1, 12)-()-<QuarterEnd: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_onOffset_month_or_quarter_or_year_end[standard-(1, 12)-()-<YearEnd: n=1, month=12>]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[360_day-<Day: n=2>-(1, 1, 3)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[360_day-<Hour: n=2>-(1, 1, 1, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[360_day-<Microsecond: n=2>-(1, 1, 1, 0, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[360_day-<Millisecond: n=2>-(1, 1, 1, 0, 0, 0, 2000)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[360_day-<Minute: n=2>-(1, 1, 1, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[360_day-<Second: n=2>-(1, 1, 1, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[365_day-<Day: n=2>-(1, 1, 3)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[365_day-<Hour: n=2>-(1, 1, 1, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[365_day-<Microsecond: n=2>-(1, 1, 1, 0, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[365_day-<Millisecond: n=2>-(1, 1, 1, 0, 0, 0, 2000)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[365_day-<Minute: n=2>-(1, 1, 1, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[365_day-<Second: n=2>-(1, 1, 1, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[366_day-<Day: n=2>-(1, 1, 3)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[366_day-<Hour: n=2>-(1, 1, 1, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[366_day-<Microsecond: n=2>-(1, 1, 1, 0, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[366_day-<Millisecond: n=2>-(1, 1, 1, 0, 0, 0, 2000)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[366_day-<Minute: n=2>-(1, 1, 1, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[366_day-<Second: n=2>-(1, 1, 1, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[all_leap-<Day: n=2>-(1, 1, 3)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[all_leap-<Hour: n=2>-(1, 1, 1, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[all_leap-<Microsecond: n=2>-(1, 1, 1, 0, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[all_leap-<Millisecond: n=2>-(1, 1, 1, 0, 0, 0, 2000)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[all_leap-<Minute: n=2>-(1, 1, 1, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[all_leap-<Second: n=2>-(1, 1, 1, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[gregorian-<Day: n=2>-(1, 1, 3)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[gregorian-<Hour: n=2>-(1, 1, 1, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[gregorian-<Microsecond: n=2>-(1, 1, 1, 0, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[gregorian-<Millisecond: n=2>-(1, 1, 1, 0, 0, 0, 2000)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[gregorian-<Minute: n=2>-(1, 1, 1, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[gregorian-<Second: n=2>-(1, 1, 1, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[julian-<Day: n=2>-(1, 1, 3)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[julian-<Hour: n=2>-(1, 1, 1, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[julian-<Microsecond: n=2>-(1, 1, 1, 0, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[julian-<Millisecond: n=2>-(1, 1, 1, 0, 0, 0, 2000)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[julian-<Minute: n=2>-(1, 1, 1, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[julian-<Second: n=2>-(1, 1, 1, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[proleptic_gregorian-<Day: n=2>-(1, 1, 3)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[proleptic_gregorian-<Hour: n=2>-(1, 1, 1, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[proleptic_gregorian-<Microsecond: n=2>-(1, 1, 1, 0, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[proleptic_gregorian-<Millisecond: n=2>-(1, 1, 1, 0, 0, 0, 2000)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[proleptic_gregorian-<Minute: n=2>-(1, 1, 1, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[proleptic_gregorian-<Second: n=2>-(1, 1, 1, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[standard-<Day: n=2>-(1, 1, 3)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[standard-<Hour: n=2>-(1, 1, 1, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[standard-<Microsecond: n=2>-(1, 1, 1, 0, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[standard-<Millisecond: n=2>-(1, 1, 1, 0, 0, 0, 2000)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[standard-<Minute: n=2>-(1, 1, 1, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_radd_sub_monthly[standard-<Second: n=2>-(1, 1, 1, 0, 0, 2)]
xarray.tests.test_cftime_offsets ‑ test_rmul[<BaseCFTimeOffset: n=1>-3-<BaseCFTimeOffset: n=3>]
xarray.tests.test_cftime_offsets ‑ test_rmul[<Day: n=1>-0.5-<Hour: n=12>]
xarray.tests.test_cftime_offsets ‑ test_rmul[<Day: n=1>-3-<Day: n=3>]
xarray.tests.test_cftime_offsets ‑ test_rmul[<Hour: n=1>-0.5-<Minute: n=30>]
xarray.tests.test_cftime_offsets ‑ test_rmul[<Hour: n=1>-3-<Hour: n=3>]
xarray.tests.test_cftime_offsets ‑ test_rmul[<Microsecond: n=1>-3-<Microsecond: n=3>]
xarray.tests.test_cftime_offsets ‑ test_rmul[<Millisecond: n=1>-0.5-<Microsecond: n=500>]
xarray.tests.test_cftime_offsets ‑ test_rmul[<Millisecond: n=1>-3-<Millisecond: n=3>]
xarray.tests.test_cftime_offsets ‑ test_rmul[<Minute: n=1>-0.5-<Second: n=30>]
xarray.tests.test_cftime_offsets ‑ test_rmul[<Minute: n=1>-3-<Minute: n=3>]
xarray.tests.test_cftime_offsets ‑ test_rmul[<MonthBegin: n=1>-3-<MonthBegin: n=3>]
xarray.tests.test_cftime_offsets ‑ test_rmul[<MonthEnd: n=1>-3-<MonthEnd: n=3>]
xarray.tests.test_cftime_offsets ‑ test_rmul[<QuarterBegin: n=1, month=3>-3-<QuarterBegin: n=3, month=3>]
xarray.tests.test_cftime_offsets ‑ test_rmul[<QuarterEnd: n=1, month=3>-3-<QuarterEnd: n=3, month=3>]
xarray.tests.test_cftime_offsets ‑ test_rmul[<Second: n=1>-0.5-<Millisecond: n=500>]
xarray.tests.test_cftime_offsets ‑ test_rmul[<Second: n=1>-3-<Second: n=3>]
xarray.tests.test_cftime_offsets ‑ test_rmul[<Tick: n=1>-3-<Tick: n=3>]
xarray.tests.test_cftime_offsets ‑ test_rmul[<YearBegin: n=1, month=1>-3-<YearBegin: n=3, month=1>]
xarray.tests.test_cftime_offsets ‑ test_rmul[<YearEnd: n=1, month=12>-3-<YearEnd: n=3, month=12>]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<Day: n=1>-(1, 3, 2, 1)-(1, 3, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<Hour: n=1>-(1, 3, 2, 1, 1)-(1, 3, 2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<Microsecond: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<Millisecond: n=1>-(1, 3, 2, 1, 1, 1, 1000)-(1, 3, 2, 1, 1, 1, 1000)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<Minute: n=1>-(1, 3, 2, 1, 1, 1)-(1, 3, 2, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<MonthBegin: n=1>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<MonthBegin: n=1>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<MonthBegin: n=2>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<MonthEnd: n=1>-(1, 3, 2)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<MonthEnd: n=1>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<MonthEnd: n=2>-(1, 3, 2)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<QuarterBegin: n=1, month=3>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<QuarterBegin: n=1, month=3>-(1, 4, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<QuarterBegin: n=2, month=2>-(1, 4, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<QuarterBegin: n=2, month=3>-(1, 4, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<QuarterEnd: n=1, month=3>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<QuarterEnd: n=2, month=2>-(2, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<QuarterEnd: n=2, month=3>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<QuarterEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<Second: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<YearBegin: n=1, month=1>-(1, 1, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<YearBegin: n=1, month=1>-(1, 3, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<YearBegin: n=2, month=1>-(1, 3, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<YearBegin: n=2, month=2>-(1, 2, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<YearBegin: n=2, month=2>-(1, 3, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<YearEnd: n=1, month=12>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<YearEnd: n=1, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<YearEnd: n=2, month=12>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[360_day-<YearEnd: n=2, month=2>-(2, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<Day: n=1>-(1, 3, 2, 1)-(1, 3, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<Hour: n=1>-(1, 3, 2, 1, 1)-(1, 3, 2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<Microsecond: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<Millisecond: n=1>-(1, 3, 2, 1, 1, 1, 1000)-(1, 3, 2, 1, 1, 1, 1000)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<Minute: n=1>-(1, 3, 2, 1, 1, 1)-(1, 3, 2, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<MonthBegin: n=1>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<MonthBegin: n=1>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<MonthBegin: n=2>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<MonthEnd: n=1>-(1, 3, 2)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<MonthEnd: n=1>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<MonthEnd: n=2>-(1, 3, 2)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<QuarterBegin: n=1, month=3>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<QuarterBegin: n=1, month=3>-(1, 4, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<QuarterBegin: n=2, month=2>-(1, 4, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<QuarterBegin: n=2, month=3>-(1, 4, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<QuarterEnd: n=1, month=3>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<QuarterEnd: n=2, month=2>-(2, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<QuarterEnd: n=2, month=3>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<QuarterEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<Second: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<YearBegin: n=1, month=1>-(1, 1, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<YearBegin: n=1, month=1>-(1, 3, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<YearBegin: n=2, month=1>-(1, 3, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<YearBegin: n=2, month=2>-(1, 2, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<YearBegin: n=2, month=2>-(1, 3, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<YearEnd: n=1, month=12>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<YearEnd: n=1, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<YearEnd: n=2, month=12>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[365_day-<YearEnd: n=2, month=2>-(2, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<Day: n=1>-(1, 3, 2, 1)-(1, 3, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<Hour: n=1>-(1, 3, 2, 1, 1)-(1, 3, 2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<Microsecond: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<Millisecond: n=1>-(1, 3, 2, 1, 1, 1, 1000)-(1, 3, 2, 1, 1, 1, 1000)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<Minute: n=1>-(1, 3, 2, 1, 1, 1)-(1, 3, 2, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<MonthBegin: n=1>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<MonthBegin: n=1>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<MonthBegin: n=2>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<MonthEnd: n=1>-(1, 3, 2)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<MonthEnd: n=1>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<MonthEnd: n=2>-(1, 3, 2)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<QuarterBegin: n=1, month=3>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<QuarterBegin: n=1, month=3>-(1, 4, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<QuarterBegin: n=2, month=2>-(1, 4, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<QuarterBegin: n=2, month=3>-(1, 4, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<QuarterEnd: n=1, month=3>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<QuarterEnd: n=2, month=2>-(2, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<QuarterEnd: n=2, month=3>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<QuarterEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<Second: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<YearBegin: n=1, month=1>-(1, 1, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<YearBegin: n=1, month=1>-(1, 3, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<YearBegin: n=2, month=1>-(1, 3, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<YearBegin: n=2, month=2>-(1, 2, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<YearBegin: n=2, month=2>-(1, 3, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<YearEnd: n=1, month=12>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<YearEnd: n=1, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<YearEnd: n=2, month=12>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[366_day-<YearEnd: n=2, month=2>-(2, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<Day: n=1>-(1, 3, 2, 1)-(1, 3, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<Hour: n=1>-(1, 3, 2, 1, 1)-(1, 3, 2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<Microsecond: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<Millisecond: n=1>-(1, 3, 2, 1, 1, 1, 1000)-(1, 3, 2, 1, 1, 1, 1000)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<Minute: n=1>-(1, 3, 2, 1, 1, 1)-(1, 3, 2, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<MonthBegin: n=1>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<MonthBegin: n=1>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<MonthBegin: n=2>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<MonthEnd: n=1>-(1, 3, 2)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<MonthEnd: n=1>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<MonthEnd: n=2>-(1, 3, 2)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<QuarterBegin: n=1, month=3>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<QuarterBegin: n=1, month=3>-(1, 4, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<QuarterBegin: n=2, month=2>-(1, 4, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<QuarterBegin: n=2, month=3>-(1, 4, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<QuarterEnd: n=1, month=3>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<QuarterEnd: n=2, month=2>-(2, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<QuarterEnd: n=2, month=3>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<QuarterEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<Second: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<YearBegin: n=1, month=1>-(1, 1, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<YearBegin: n=1, month=1>-(1, 3, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<YearBegin: n=2, month=1>-(1, 3, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<YearBegin: n=2, month=2>-(1, 2, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<YearBegin: n=2, month=2>-(1, 3, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<YearEnd: n=1, month=12>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<YearEnd: n=1, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<YearEnd: n=2, month=12>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[all_leap-<YearEnd: n=2, month=2>-(2, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<Day: n=1>-(1, 3, 2, 1)-(1, 3, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<Hour: n=1>-(1, 3, 2, 1, 1)-(1, 3, 2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<Microsecond: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<Millisecond: n=1>-(1, 3, 2, 1, 1, 1, 1000)-(1, 3, 2, 1, 1, 1, 1000)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<Minute: n=1>-(1, 3, 2, 1, 1, 1)-(1, 3, 2, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<MonthBegin: n=1>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<MonthBegin: n=1>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<MonthBegin: n=2>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<MonthEnd: n=1>-(1, 3, 2)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<MonthEnd: n=1>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<MonthEnd: n=2>-(1, 3, 2)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<QuarterBegin: n=1, month=3>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<QuarterBegin: n=1, month=3>-(1, 4, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<QuarterBegin: n=2, month=2>-(1, 4, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<QuarterBegin: n=2, month=3>-(1, 4, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<QuarterEnd: n=1, month=3>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<QuarterEnd: n=2, month=2>-(2, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<QuarterEnd: n=2, month=3>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<QuarterEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<Second: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<YearBegin: n=1, month=1>-(1, 1, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<YearBegin: n=1, month=1>-(1, 3, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<YearBegin: n=2, month=1>-(1, 3, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<YearBegin: n=2, month=2>-(1, 2, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<YearBegin: n=2, month=2>-(1, 3, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<YearEnd: n=1, month=12>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<YearEnd: n=1, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<YearEnd: n=2, month=12>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[gregorian-<YearEnd: n=2, month=2>-(2, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<Day: n=1>-(1, 3, 2, 1)-(1, 3, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<Hour: n=1>-(1, 3, 2, 1, 1)-(1, 3, 2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<Microsecond: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<Millisecond: n=1>-(1, 3, 2, 1, 1, 1, 1000)-(1, 3, 2, 1, 1, 1, 1000)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<Minute: n=1>-(1, 3, 2, 1, 1, 1)-(1, 3, 2, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<MonthBegin: n=1>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<MonthBegin: n=1>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<MonthBegin: n=2>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<MonthEnd: n=1>-(1, 3, 2)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<MonthEnd: n=1>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<MonthEnd: n=2>-(1, 3, 2)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<QuarterBegin: n=1, month=3>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<QuarterBegin: n=1, month=3>-(1, 4, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<QuarterBegin: n=2, month=2>-(1, 4, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<QuarterBegin: n=2, month=3>-(1, 4, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<QuarterEnd: n=1, month=3>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<QuarterEnd: n=2, month=2>-(2, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<QuarterEnd: n=2, month=3>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<QuarterEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<Second: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<YearBegin: n=1, month=1>-(1, 1, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<YearBegin: n=1, month=1>-(1, 3, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<YearBegin: n=2, month=1>-(1, 3, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<YearBegin: n=2, month=2>-(1, 2, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<YearBegin: n=2, month=2>-(1, 3, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<YearEnd: n=1, month=12>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<YearEnd: n=1, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<YearEnd: n=2, month=12>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[julian-<YearEnd: n=2, month=2>-(2, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<Day: n=1>-(1, 3, 2, 1)-(1, 3, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<Hour: n=1>-(1, 3, 2, 1, 1)-(1, 3, 2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<Microsecond: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<Millisecond: n=1>-(1, 3, 2, 1, 1, 1, 1000)-(1, 3, 2, 1, 1, 1, 1000)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<Minute: n=1>-(1, 3, 2, 1, 1, 1)-(1, 3, 2, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<MonthBegin: n=1>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<MonthBegin: n=1>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<MonthBegin: n=2>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<MonthEnd: n=1>-(1, 3, 2)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<MonthEnd: n=1>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<MonthEnd: n=2>-(1, 3, 2)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<QuarterBegin: n=1, month=3>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<QuarterBegin: n=1, month=3>-(1, 4, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<QuarterBegin: n=2, month=2>-(1, 4, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<QuarterBegin: n=2, month=3>-(1, 4, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<QuarterEnd: n=1, month=3>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<QuarterEnd: n=2, month=2>-(2, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<QuarterEnd: n=2, month=3>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<QuarterEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<Second: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<YearBegin: n=1, month=1>-(1, 1, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<YearBegin: n=1, month=1>-(1, 3, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<YearBegin: n=2, month=1>-(1, 3, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<YearBegin: n=2, month=2>-(1, 2, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<YearBegin: n=2, month=2>-(1, 3, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<YearEnd: n=1, month=12>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<YearEnd: n=1, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<YearEnd: n=2, month=12>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[proleptic_gregorian-<YearEnd: n=2, month=2>-(2, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<Day: n=1>-(1, 3, 2, 1)-(1, 3, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<Hour: n=1>-(1, 3, 2, 1, 1)-(1, 3, 2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<Microsecond: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<Millisecond: n=1>-(1, 3, 2, 1, 1, 1, 1000)-(1, 3, 2, 1, 1, 1, 1000)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<Minute: n=1>-(1, 3, 2, 1, 1, 1)-(1, 3, 2, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<MonthBegin: n=1>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<MonthBegin: n=1>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<MonthBegin: n=2>-(1, 3, 2)-(1, 3)]

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

18042 tests found (test 4065 to 4748)

There are 18042 tests, see "Raw output" for the list of tests 4065 to 4748.
Raw output
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<MonthEnd: n=1>-(1, 3, 2)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<MonthEnd: n=1>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<MonthEnd: n=2>-(1, 3, 2)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<QuarterBegin: n=1, month=3>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<QuarterBegin: n=1, month=3>-(1, 4, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<QuarterBegin: n=2, month=2>-(1, 4, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<QuarterBegin: n=2, month=3>-(1, 4, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<QuarterEnd: n=1, month=3>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<QuarterEnd: n=2, month=2>-(2, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<QuarterEnd: n=2, month=3>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<QuarterEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<Second: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<YearBegin: n=1, month=1>-(1, 1, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<YearBegin: n=1, month=1>-(1, 3, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<YearBegin: n=2, month=1>-(1, 3, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<YearBegin: n=2, month=2>-(1, 2, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<YearBegin: n=2, month=2>-(1, 3, 1)-(1, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<YearEnd: n=1, month=12>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<YearEnd: n=1, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<YearEnd: n=2, month=12>-(2, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollback[standard-<YearEnd: n=2, month=2>-(2, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<Day: n=1>-(1, 3, 2, 1)-(1, 3, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<Hour: n=1>-(1, 3, 2, 1, 1)-(1, 3, 2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<Microsecond: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<Millisecond: n=1>-(1, 3, 2, 1, 1, 1, 1000)-(1, 3, 2, 1, 1, 1, 1000)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<Minute: n=1>-(1, 3, 2, 1, 1, 1)-(1, 3, 2, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<MonthBegin: n=1>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<MonthBegin: n=1>-(1, 3, 2)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<MonthBegin: n=2>-(1, 3, 2)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<MonthEnd: n=1>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<MonthEnd: n=1>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<MonthEnd: n=2>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<QuarterBegin: n=1, month=3>-(1, 3, 2)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<QuarterBegin: n=1, month=3>-(1, 4, 1)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<QuarterBegin: n=2, month=2>-(1, 4, 1)-(1, 5)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<QuarterBegin: n=2, month=3>-(1, 4, 1)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<QuarterEnd: n=1, month=3>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<QuarterEnd: n=2, month=2>-(1, 3, 1)-(1, 5)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<QuarterEnd: n=2, month=3>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<QuarterEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<Second: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<YearBegin: n=1, month=1>-(1, 1, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<YearBegin: n=1, month=1>-(1, 3, 1)-(2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<YearBegin: n=2, month=1>-(1, 3, 1)-(2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<YearBegin: n=2, month=2>-(1, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<YearEnd: n=1, month=12>-(1, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<YearEnd: n=2, month=12>-(1, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<YearEnd: n=2, month=2>-(1, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[360_day-<YearEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<Day: n=1>-(1, 3, 2, 1)-(1, 3, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<Hour: n=1>-(1, 3, 2, 1, 1)-(1, 3, 2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<Microsecond: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<Millisecond: n=1>-(1, 3, 2, 1, 1, 1, 1000)-(1, 3, 2, 1, 1, 1, 1000)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<Minute: n=1>-(1, 3, 2, 1, 1, 1)-(1, 3, 2, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<MonthBegin: n=1>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<MonthBegin: n=1>-(1, 3, 2)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<MonthBegin: n=2>-(1, 3, 2)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<MonthEnd: n=1>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<MonthEnd: n=1>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<MonthEnd: n=2>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<QuarterBegin: n=1, month=3>-(1, 3, 2)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<QuarterBegin: n=1, month=3>-(1, 4, 1)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<QuarterBegin: n=2, month=2>-(1, 4, 1)-(1, 5)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<QuarterBegin: n=2, month=3>-(1, 4, 1)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<QuarterEnd: n=1, month=3>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<QuarterEnd: n=2, month=2>-(1, 3, 1)-(1, 5)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<QuarterEnd: n=2, month=3>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<QuarterEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<Second: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<YearBegin: n=1, month=1>-(1, 1, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<YearBegin: n=1, month=1>-(1, 3, 1)-(2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<YearBegin: n=2, month=1>-(1, 3, 1)-(2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<YearBegin: n=2, month=2>-(1, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<YearEnd: n=1, month=12>-(1, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<YearEnd: n=2, month=12>-(1, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<YearEnd: n=2, month=2>-(1, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[365_day-<YearEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<Day: n=1>-(1, 3, 2, 1)-(1, 3, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<Hour: n=1>-(1, 3, 2, 1, 1)-(1, 3, 2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<Microsecond: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<Millisecond: n=1>-(1, 3, 2, 1, 1, 1, 1000)-(1, 3, 2, 1, 1, 1, 1000)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<Minute: n=1>-(1, 3, 2, 1, 1, 1)-(1, 3, 2, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<MonthBegin: n=1>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<MonthBegin: n=1>-(1, 3, 2)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<MonthBegin: n=2>-(1, 3, 2)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<MonthEnd: n=1>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<MonthEnd: n=1>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<MonthEnd: n=2>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<QuarterBegin: n=1, month=3>-(1, 3, 2)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<QuarterBegin: n=1, month=3>-(1, 4, 1)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<QuarterBegin: n=2, month=2>-(1, 4, 1)-(1, 5)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<QuarterBegin: n=2, month=3>-(1, 4, 1)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<QuarterEnd: n=1, month=3>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<QuarterEnd: n=2, month=2>-(1, 3, 1)-(1, 5)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<QuarterEnd: n=2, month=3>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<QuarterEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<Second: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<YearBegin: n=1, month=1>-(1, 1, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<YearBegin: n=1, month=1>-(1, 3, 1)-(2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<YearBegin: n=2, month=1>-(1, 3, 1)-(2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<YearBegin: n=2, month=2>-(1, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<YearEnd: n=1, month=12>-(1, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<YearEnd: n=2, month=12>-(1, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<YearEnd: n=2, month=2>-(1, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[366_day-<YearEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<Day: n=1>-(1, 3, 2, 1)-(1, 3, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<Hour: n=1>-(1, 3, 2, 1, 1)-(1, 3, 2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<Microsecond: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<Millisecond: n=1>-(1, 3, 2, 1, 1, 1, 1000)-(1, 3, 2, 1, 1, 1, 1000)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<Minute: n=1>-(1, 3, 2, 1, 1, 1)-(1, 3, 2, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<MonthBegin: n=1>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<MonthBegin: n=1>-(1, 3, 2)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<MonthBegin: n=2>-(1, 3, 2)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<MonthEnd: n=1>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<MonthEnd: n=1>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<MonthEnd: n=2>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<QuarterBegin: n=1, month=3>-(1, 3, 2)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<QuarterBegin: n=1, month=3>-(1, 4, 1)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<QuarterBegin: n=2, month=2>-(1, 4, 1)-(1, 5)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<QuarterBegin: n=2, month=3>-(1, 4, 1)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<QuarterEnd: n=1, month=3>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<QuarterEnd: n=2, month=2>-(1, 3, 1)-(1, 5)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<QuarterEnd: n=2, month=3>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<QuarterEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<Second: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<YearBegin: n=1, month=1>-(1, 1, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<YearBegin: n=1, month=1>-(1, 3, 1)-(2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<YearBegin: n=2, month=1>-(1, 3, 1)-(2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<YearBegin: n=2, month=2>-(1, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<YearEnd: n=1, month=12>-(1, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<YearEnd: n=2, month=12>-(1, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<YearEnd: n=2, month=2>-(1, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[all_leap-<YearEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<Day: n=1>-(1, 3, 2, 1)-(1, 3, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<Hour: n=1>-(1, 3, 2, 1, 1)-(1, 3, 2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<Microsecond: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<Millisecond: n=1>-(1, 3, 2, 1, 1, 1, 1000)-(1, 3, 2, 1, 1, 1, 1000)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<Minute: n=1>-(1, 3, 2, 1, 1, 1)-(1, 3, 2, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<MonthBegin: n=1>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<MonthBegin: n=1>-(1, 3, 2)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<MonthBegin: n=2>-(1, 3, 2)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<MonthEnd: n=1>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<MonthEnd: n=1>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<MonthEnd: n=2>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<QuarterBegin: n=1, month=3>-(1, 3, 2)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<QuarterBegin: n=1, month=3>-(1, 4, 1)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<QuarterBegin: n=2, month=2>-(1, 4, 1)-(1, 5)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<QuarterBegin: n=2, month=3>-(1, 4, 1)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<QuarterEnd: n=1, month=3>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<QuarterEnd: n=2, month=2>-(1, 3, 1)-(1, 5)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<QuarterEnd: n=2, month=3>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<QuarterEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<Second: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<YearBegin: n=1, month=1>-(1, 1, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<YearBegin: n=1, month=1>-(1, 3, 1)-(2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<YearBegin: n=2, month=1>-(1, 3, 1)-(2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<YearBegin: n=2, month=2>-(1, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<YearEnd: n=1, month=12>-(1, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<YearEnd: n=2, month=12>-(1, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<YearEnd: n=2, month=2>-(1, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[gregorian-<YearEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<Day: n=1>-(1, 3, 2, 1)-(1, 3, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<Hour: n=1>-(1, 3, 2, 1, 1)-(1, 3, 2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<Microsecond: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<Millisecond: n=1>-(1, 3, 2, 1, 1, 1, 1000)-(1, 3, 2, 1, 1, 1, 1000)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<Minute: n=1>-(1, 3, 2, 1, 1, 1)-(1, 3, 2, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<MonthBegin: n=1>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<MonthBegin: n=1>-(1, 3, 2)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<MonthBegin: n=2>-(1, 3, 2)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<MonthEnd: n=1>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<MonthEnd: n=1>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<MonthEnd: n=2>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<QuarterBegin: n=1, month=3>-(1, 3, 2)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<QuarterBegin: n=1, month=3>-(1, 4, 1)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<QuarterBegin: n=2, month=2>-(1, 4, 1)-(1, 5)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<QuarterBegin: n=2, month=3>-(1, 4, 1)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<QuarterEnd: n=1, month=3>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<QuarterEnd: n=2, month=2>-(1, 3, 1)-(1, 5)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<QuarterEnd: n=2, month=3>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<QuarterEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<Second: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<YearBegin: n=1, month=1>-(1, 1, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<YearBegin: n=1, month=1>-(1, 3, 1)-(2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<YearBegin: n=2, month=1>-(1, 3, 1)-(2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<YearBegin: n=2, month=2>-(1, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<YearEnd: n=1, month=12>-(1, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<YearEnd: n=2, month=12>-(1, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<YearEnd: n=2, month=2>-(1, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[julian-<YearEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<Day: n=1>-(1, 3, 2, 1)-(1, 3, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<Hour: n=1>-(1, 3, 2, 1, 1)-(1, 3, 2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<Microsecond: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<Millisecond: n=1>-(1, 3, 2, 1, 1, 1, 1000)-(1, 3, 2, 1, 1, 1, 1000)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<Minute: n=1>-(1, 3, 2, 1, 1, 1)-(1, 3, 2, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<MonthBegin: n=1>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<MonthBegin: n=1>-(1, 3, 2)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<MonthBegin: n=2>-(1, 3, 2)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<MonthEnd: n=1>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<MonthEnd: n=1>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<MonthEnd: n=2>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<QuarterBegin: n=1, month=3>-(1, 3, 2)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<QuarterBegin: n=1, month=3>-(1, 4, 1)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<QuarterBegin: n=2, month=2>-(1, 4, 1)-(1, 5)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<QuarterBegin: n=2, month=3>-(1, 4, 1)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<QuarterEnd: n=1, month=3>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<QuarterEnd: n=2, month=2>-(1, 3, 1)-(1, 5)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<QuarterEnd: n=2, month=3>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<QuarterEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<Second: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<YearBegin: n=1, month=1>-(1, 1, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<YearBegin: n=1, month=1>-(1, 3, 1)-(2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<YearBegin: n=2, month=1>-(1, 3, 1)-(2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<YearBegin: n=2, month=2>-(1, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<YearEnd: n=1, month=12>-(1, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<YearEnd: n=2, month=12>-(1, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<YearEnd: n=2, month=2>-(1, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[proleptic_gregorian-<YearEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<Day: n=1>-(1, 3, 2, 1)-(1, 3, 2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<Hour: n=1>-(1, 3, 2, 1, 1)-(1, 3, 2, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<Microsecond: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<Millisecond: n=1>-(1, 3, 2, 1, 1, 1, 1000)-(1, 3, 2, 1, 1, 1, 1000)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<Minute: n=1>-(1, 3, 2, 1, 1, 1)-(1, 3, 2, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<MonthBegin: n=1>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<MonthBegin: n=1>-(1, 3, 2)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<MonthBegin: n=2>-(1, 3, 2)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<MonthEnd: n=1>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<MonthEnd: n=1>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<MonthEnd: n=2>-(1, 3, 2)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<QuarterBegin: n=1, month=3>-(1, 3, 2)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<QuarterBegin: n=1, month=3>-(1, 4, 1)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<QuarterBegin: n=2, month=2>-(1, 4, 1)-(1, 5)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<QuarterBegin: n=2, month=3>-(1, 4, 1)-(1, 6)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<QuarterEnd: n=1, month=3>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<QuarterEnd: n=2, month=2>-(1, 3, 1)-(1, 5)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<QuarterEnd: n=2, month=3>-(1, 3, 1)-(1, 3)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<QuarterEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<Second: n=1>-(1, 3, 2, 1, 1, 1, 1)-(1, 3, 2, 1, 1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<YearBegin: n=1, month=1>-(1, 1, 1)-(1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<YearBegin: n=1, month=1>-(1, 3, 1)-(2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<YearBegin: n=2, month=1>-(1, 3, 1)-(2, 1)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<YearBegin: n=2, month=2>-(1, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<YearEnd: n=1, month=12>-(1, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<YearEnd: n=2, month=12>-(1, 3, 1)-(1, 12)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<YearEnd: n=2, month=2>-(1, 3, 1)-(2, 2)]
xarray.tests.test_cftime_offsets ‑ test_rollforward[standard-<YearEnd: n=2, month=4>-(1, 4, 30)-(1, 4)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[360_day-<Day: n=2>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[360_day-<Hour: n=2>-(1, 1, 2, 22)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[360_day-<Microsecond: n=2>-(1, 1, 2, 23, 59, 59, 999998)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[360_day-<Millisecond: n=2>-(1, 1, 2, 23, 59, 59, 998000)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[360_day-<Minute: n=2>-(1, 1, 2, 23, 58)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[360_day-<Second: n=2>-(1, 1, 2, 23, 59, 58)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[365_day-<Day: n=2>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[365_day-<Hour: n=2>-(1, 1, 2, 22)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[365_day-<Microsecond: n=2>-(1, 1, 2, 23, 59, 59, 999998)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[365_day-<Millisecond: n=2>-(1, 1, 2, 23, 59, 59, 998000)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[365_day-<Minute: n=2>-(1, 1, 2, 23, 58)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[365_day-<Second: n=2>-(1, 1, 2, 23, 59, 58)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[366_day-<Day: n=2>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[366_day-<Hour: n=2>-(1, 1, 2, 22)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[366_day-<Microsecond: n=2>-(1, 1, 2, 23, 59, 59, 999998)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[366_day-<Millisecond: n=2>-(1, 1, 2, 23, 59, 59, 998000)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[366_day-<Minute: n=2>-(1, 1, 2, 23, 58)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[366_day-<Second: n=2>-(1, 1, 2, 23, 59, 58)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[all_leap-<Day: n=2>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[all_leap-<Hour: n=2>-(1, 1, 2, 22)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[all_leap-<Microsecond: n=2>-(1, 1, 2, 23, 59, 59, 999998)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[all_leap-<Millisecond: n=2>-(1, 1, 2, 23, 59, 59, 998000)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[all_leap-<Minute: n=2>-(1, 1, 2, 23, 58)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[all_leap-<Second: n=2>-(1, 1, 2, 23, 59, 58)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[gregorian-<Day: n=2>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[gregorian-<Hour: n=2>-(1, 1, 2, 22)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[gregorian-<Microsecond: n=2>-(1, 1, 2, 23, 59, 59, 999998)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[gregorian-<Millisecond: n=2>-(1, 1, 2, 23, 59, 59, 998000)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[gregorian-<Minute: n=2>-(1, 1, 2, 23, 58)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[gregorian-<Second: n=2>-(1, 1, 2, 23, 59, 58)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[julian-<Day: n=2>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[julian-<Hour: n=2>-(1, 1, 2, 22)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[julian-<Microsecond: n=2>-(1, 1, 2, 23, 59, 59, 999998)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[julian-<Millisecond: n=2>-(1, 1, 2, 23, 59, 59, 998000)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[julian-<Minute: n=2>-(1, 1, 2, 23, 58)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[julian-<Second: n=2>-(1, 1, 2, 23, 59, 58)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[proleptic_gregorian-<Day: n=2>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[proleptic_gregorian-<Hour: n=2>-(1, 1, 2, 22)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[proleptic_gregorian-<Microsecond: n=2>-(1, 1, 2, 23, 59, 59, 999998)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[proleptic_gregorian-<Millisecond: n=2>-(1, 1, 2, 23, 59, 59, 998000)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[proleptic_gregorian-<Minute: n=2>-(1, 1, 2, 23, 58)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[proleptic_gregorian-<Second: n=2>-(1, 1, 2, 23, 59, 58)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[standard-<Day: n=2>-(1, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[standard-<Hour: n=2>-(1, 1, 2, 22)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[standard-<Microsecond: n=2>-(1, 1, 2, 23, 59, 59, 999998)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[standard-<Millisecond: n=2>-(1, 1, 2, 23, 59, 59, 998000)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[standard-<Minute: n=2>-(1, 1, 2, 23, 58)]
xarray.tests.test_cftime_offsets ‑ test_rsub_sub_monthly[standard-<Second: n=2>-(1, 1, 2, 23, 59, 58)]
xarray.tests.test_cftime_offsets ‑ test_rule_code[<BaseCFTimeOffset: n=1>-None]
xarray.tests.test_cftime_offsets ‑ test_rule_code[<MonthBegin: n=1>-MS]
xarray.tests.test_cftime_offsets ‑ test_rule_code[<QuarterBegin: n=1, month=3>-QS-MAR]
xarray.tests.test_cftime_offsets ‑ test_rule_code[<YearBegin: n=1, month=1>-AS-JAN]
xarray.tests.test_cftime_offsets ‑ test_str_and_repr[<BaseCFTimeOffset: n=1>-<BaseCFTimeOffset: n=1>]
xarray.tests.test_cftime_offsets ‑ test_str_and_repr[<QuarterBegin: n=1, month=3>-<QuarterBegin: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_str_and_repr[<YearBegin: n=1, month=1>-<YearBegin: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[360_day-<BaseCFTimeOffset: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[360_day-<Day: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[360_day-<Hour: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[360_day-<Microsecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[360_day-<Millisecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[360_day-<Minute: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[360_day-<MonthBegin: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[360_day-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[360_day-<QuarterBegin: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[360_day-<QuarterBegin: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[360_day-<QuarterEnd: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[360_day-<QuarterEnd: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[360_day-<Second: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[360_day-<YearBegin: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[360_day-<YearBegin: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[360_day-<YearEnd: n=1, month=12>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[360_day-<YearEnd: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[365_day-<BaseCFTimeOffset: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[365_day-<Day: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[365_day-<Hour: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[365_day-<Microsecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[365_day-<Millisecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[365_day-<Minute: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[365_day-<MonthBegin: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[365_day-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[365_day-<QuarterBegin: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[365_day-<QuarterBegin: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[365_day-<QuarterEnd: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[365_day-<QuarterEnd: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[365_day-<Second: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[365_day-<YearBegin: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[365_day-<YearBegin: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[365_day-<YearEnd: n=1, month=12>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[365_day-<YearEnd: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[366_day-<BaseCFTimeOffset: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[366_day-<Day: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[366_day-<Hour: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[366_day-<Microsecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[366_day-<Millisecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[366_day-<Minute: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[366_day-<MonthBegin: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[366_day-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[366_day-<QuarterBegin: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[366_day-<QuarterBegin: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[366_day-<QuarterEnd: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[366_day-<QuarterEnd: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[366_day-<Second: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[366_day-<YearBegin: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[366_day-<YearBegin: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[366_day-<YearEnd: n=1, month=12>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[366_day-<YearEnd: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[all_leap-<BaseCFTimeOffset: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[all_leap-<Day: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[all_leap-<Hour: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[all_leap-<Microsecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[all_leap-<Millisecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[all_leap-<Minute: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[all_leap-<MonthBegin: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[all_leap-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[all_leap-<QuarterBegin: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[all_leap-<QuarterBegin: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[all_leap-<QuarterEnd: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[all_leap-<QuarterEnd: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[all_leap-<Second: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[all_leap-<YearBegin: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[all_leap-<YearBegin: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[all_leap-<YearEnd: n=1, month=12>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[all_leap-<YearEnd: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[gregorian-<BaseCFTimeOffset: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[gregorian-<Day: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[gregorian-<Hour: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[gregorian-<Microsecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[gregorian-<Millisecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[gregorian-<Minute: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[gregorian-<MonthBegin: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[gregorian-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[gregorian-<QuarterBegin: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[gregorian-<QuarterBegin: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[gregorian-<QuarterEnd: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[gregorian-<QuarterEnd: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[gregorian-<Second: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[gregorian-<YearBegin: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[gregorian-<YearBegin: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[gregorian-<YearEnd: n=1, month=12>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[gregorian-<YearEnd: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[julian-<BaseCFTimeOffset: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[julian-<Day: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[julian-<Hour: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[julian-<Microsecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[julian-<Millisecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[julian-<Minute: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[julian-<MonthBegin: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[julian-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[julian-<QuarterBegin: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[julian-<QuarterBegin: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[julian-<QuarterEnd: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[julian-<QuarterEnd: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[julian-<Second: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[julian-<YearBegin: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[julian-<YearBegin: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[julian-<YearEnd: n=1, month=12>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[julian-<YearEnd: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[proleptic_gregorian-<BaseCFTimeOffset: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[proleptic_gregorian-<Day: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[proleptic_gregorian-<Hour: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[proleptic_gregorian-<Microsecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[proleptic_gregorian-<Millisecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[proleptic_gregorian-<Minute: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[proleptic_gregorian-<MonthBegin: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[proleptic_gregorian-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[proleptic_gregorian-<QuarterBegin: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[proleptic_gregorian-<QuarterBegin: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[proleptic_gregorian-<QuarterEnd: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[proleptic_gregorian-<QuarterEnd: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[proleptic_gregorian-<Second: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[proleptic_gregorian-<YearBegin: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[proleptic_gregorian-<YearBegin: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[proleptic_gregorian-<YearEnd: n=1, month=12>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[proleptic_gregorian-<YearEnd: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[standard-<BaseCFTimeOffset: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[standard-<Day: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[standard-<Hour: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[standard-<Microsecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[standard-<Millisecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[standard-<Minute: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[standard-<MonthBegin: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[standard-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[standard-<QuarterBegin: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[standard-<QuarterBegin: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[standard-<QuarterEnd: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[standard-<QuarterEnd: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[standard-<Second: n=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[standard-<YearBegin: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[standard-<YearBegin: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[standard-<YearEnd: n=1, month=12>]
xarray.tests.test_cftime_offsets ‑ test_sub_error[standard-<YearEnd: n=1, month=2>]
xarray.tests.test_cftime_offsets ‑ test_to_cftime_datetime[360_day-(2000, 1, 1)-(2000, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_to_cftime_datetime[360_day-2000-01-01-(2000, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_to_cftime_datetime[365_day-(2000, 1, 1)-(2000, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_to_cftime_datetime[365_day-2000-01-01-(2000, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_to_cftime_datetime[366_day-(2000, 1, 1)-(2000, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_to_cftime_datetime[366_day-2000-01-01-(2000, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_to_cftime_datetime[all_leap-(2000, 1, 1)-(2000, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_to_cftime_datetime[all_leap-2000-01-01-(2000, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_to_cftime_datetime[gregorian-(2000, 1, 1)-(2000, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_to_cftime_datetime[gregorian-2000-01-01-(2000, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_to_cftime_datetime[julian-(2000, 1, 1)-(2000, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_to_cftime_datetime[julian-2000-01-01-(2000, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_to_cftime_datetime[proleptic_gregorian-(2000, 1, 1)-(2000, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_to_cftime_datetime[proleptic_gregorian-2000-01-01-(2000, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_to_cftime_datetime[standard-(2000, 1, 1)-(2000, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_to_cftime_datetime[standard-2000-01-01-(2000, 1, 1)]
xarray.tests.test_cftime_offsets ‑ test_to_cftime_datetime_error_no_calendar
xarray.tests.test_cftime_offsets ‑ test_to_cftime_datetime_error_type_error
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-2-0-]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-2-1-JAN]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-2-10-OCT]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-2-11-NOV]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-2-12-DEC]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-2-2-FEB]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-2-3-MAR]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-2-4-APR]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-2-5-MAY]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-2-6-JUN]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-2-7-JUL]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-2-8-AUG]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-2-9-SEP]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-None-0-]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-None-1-JAN]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-None-10-OCT]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-None-11-NOV]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-None-12-DEC]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-None-2-FEB]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-None-3-MAR]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-None-4-APR]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-None-5-MAY]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-None-6-JUN]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-None-7-JUL]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-None-8-AUG]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[A-None-9-SEP]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-2-0-]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-2-1-JAN]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-2-10-OCT]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-2-11-NOV]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-2-12-DEC]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-2-2-FEB]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-2-3-MAR]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-2-4-APR]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-2-5-MAY]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-2-6-JUN]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-2-7-JUL]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-2-8-AUG]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-2-9-SEP]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-None-0-]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-None-1-JAN]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-None-10-OCT]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-None-11-NOV]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-None-12-DEC]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-None-2-FEB]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-None-3-MAR]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-None-4-APR]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-None-5-MAY]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-None-6-JUN]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-None-7-JUL]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-None-8-AUG]
xarray.tests.test_cftime_offsets ‑ test_to_offset_annual[AS-None-9-SEP]
xarray.tests.test_cftime_offsets ‑ test_to_offset_offset_input[<BaseCFTimeOffset: n=1>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_offset_input[<MonthBegin: n=1>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_offset_input[<QuarterBegin: n=1, month=3>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_offset_input[<YearBegin: n=1, month=1>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-2-0-]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-2-1-JAN]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-2-10-OCT]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-2-11-NOV]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-2-12-DEC]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-2-2-FEB]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-2-3-MAR]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-2-4-APR]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-2-5-MAY]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-2-6-JUN]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-2-7-JUL]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-2-8-AUG]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-2-9-SEP]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-None-0-]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-None-1-JAN]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-None-10-OCT]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-None-11-NOV]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-None-12-DEC]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-None-2-FEB]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-None-3-MAR]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-None-4-APR]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-None-5-MAY]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-None-6-JUN]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-None-7-JUL]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-None-8-AUG]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[Q-None-9-SEP]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-2-0-]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-2-1-JAN]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-2-10-OCT]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-2-11-NOV]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-2-12-DEC]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-2-2-FEB]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-2-3-MAR]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-2-4-APR]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-2-5-MAY]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-2-6-JUN]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-2-7-JUL]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-2-8-AUG]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-2-9-SEP]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-None-0-]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-None-1-JAN]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-None-10-OCT]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-None-11-NOV]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-None-12-DEC]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-None-2-FEB]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-None-3-MAR]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-None-4-APR]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-None-5-MAY]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-None-6-JUN]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-None-7-JUL]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-None-8-AUG]
xarray.tests.test_cftime_offsets ‑ test_to_offset_quarter[QS-None-9-SEP]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[2D-<Day: n=2>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[2H-<Hour: n=2>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[2L-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[2M-<MonthEnd: n=2>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[2MS-<MonthBegin: n=2>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[2S-<Second: n=2>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[2T-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[2U-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[2min-<Minute: n=2>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[2ms-<Millisecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[2us-<Microsecond: n=2>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[D-<Day: n=1>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[H-<Hour: n=1>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[L-<Millisecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[M-<MonthEnd: n=1>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[MS-<MonthBegin: n=1>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[S-<Second: n=1>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[T-<Minute: n=1>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[U-<Microsecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[min-<Minute: n=1>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[ms-<Millisecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_to_offset_sub_annual[us-<Microsecond: n=1>]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_invalid_month[<class 'xarray.coding.cftime_offsets.QuarterBegin'>-0-<class 'ValueError'>]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_invalid_month[<class 'xarray.coding.cftime_offsets.QuarterBegin'>-1.5-<class 'TypeError'>]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_invalid_month[<class 'xarray.coding.cftime_offsets.QuarterBegin'>-13-<class 'ValueError'>]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_invalid_month[<class 'xarray.coding.cftime_offsets.QuarterEnd'>-0-<class 'ValueError'>]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_invalid_month[<class 'xarray.coding.cftime_offsets.QuarterEnd'>-1.5-<class 'TypeError'>]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_invalid_month[<class 'xarray.coding.cftime_offsets.QuarterEnd'>-13-<class 'ValueError'>]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_invalid_month[<class 'xarray.coding.cftime_offsets.YearBegin'>-0-<class 'ValueError'>]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_invalid_month[<class 'xarray.coding.cftime_offsets.YearBegin'>-1.5-<class 'TypeError'>]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_invalid_month[<class 'xarray.coding.cftime_offsets.YearBegin'>-13-<class 'ValueError'>]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_invalid_month[<class 'xarray.coding.cftime_offsets.YearEnd'>-0-<class 'ValueError'>]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_invalid_month[<class 'xarray.coding.cftime_offsets.YearEnd'>-1.5-<class 'TypeError'>]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_invalid_month[<class 'xarray.coding.cftime_offsets.YearEnd'>-13-<class 'ValueError'>]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_valid_month[<QuarterBegin: n=1, month=3>-3]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_valid_month[<QuarterBegin: n=1, month=5>-5]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_valid_month[<QuarterEnd: n=1, month=3>-3]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_valid_month[<QuarterEnd: n=1, month=5>-5]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_valid_month[<YearBegin: n=1, month=1>-1]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_valid_month[<YearBegin: n=1, month=5>-5]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_valid_month[<YearEnd: n=1, month=12>-12]
xarray.tests.test_cftime_offsets ‑ test_year_offset_constructor_valid_month[<YearEnd: n=1, month=5>-5]
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_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-standard]
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-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-standard]
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-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]

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

18042 tests found (test 4749 to 5526)

There are 18042 tests, see "Raw output" for the list of tests 4749 to 5526.
Raw output
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_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='standard', 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='standard', 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='standard', 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-L-ms-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[360_day-L-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[360_day-T-min-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[360_day-T-min-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-L-ms-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[365_day-L-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[365_day-T-min-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[365_day-T-min-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-L-ms-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[366_day-L-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[366_day-T-min-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[366_day-T-min-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-L-ms-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[all_leap-L-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[all_leap-T-min-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[all_leap-T-min-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-L-ms-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[gregorian-L-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[gregorian-T-min-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[gregorian-T-min-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-L-ms-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[julian-L-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[julian-T-min-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[julian-T-min-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-L-ms-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[proleptic_gregorian-L-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[proleptic_gregorian-T-min-1.5]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float[proleptic_gregorian-T-min-2.0]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float_fails_for_non_tick_freqs[AS]
xarray.tests.test_cftimeindex ‑ test_cftimeindex_shift_float_fails_for_non_tick_freqs[A]
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[M]
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[Q]
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_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-2AS-FEB]
xarray.tests.test_cftimeindex ‑ test_infer_freq[360_day-300AS-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-4M]
xarray.tests.test_cftimeindex ‑ test_infer_freq[360_day-5T]
xarray.tests.test_cftimeindex ‑ test_infer_freq[360_day-7D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[360_day-A-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[360_day-AS-JUL]
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-Q-NOV]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-2AS-FEB]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-300AS-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-4M]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-5T]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-7D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-A-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[365_day-AS-JUL]
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-Q-NOV]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-2AS-FEB]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-300AS-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-4M]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-5T]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-7D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-A-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[366_day-AS-JUL]
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-Q-NOV]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-2AS-FEB]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-300AS-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-4M]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-5T]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-7D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-A-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[all_leap-AS-JUL]
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-Q-NOV]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-2AS-FEB]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-300AS-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-4M]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-5T]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-7D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-A-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[gregorian-AS-JUL]
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-Q-NOV]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-2AS-FEB]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-300AS-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-4M]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-5T]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-7D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-A-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[julian-AS-JUL]
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-Q-NOV]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-2AS-FEB]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-300AS-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-4M]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-5T]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-7D]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-A-DEC]
xarray.tests.test_cftimeindex ‑ test_infer_freq[proleptic_gregorian-AS-JUL]
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-Q-NOV]
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_like[day-dash]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_like[day]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_like[hour-dash]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_like[hour-space-separator]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_like[hour]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_like[minute-dash]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_like[minute-space-separator]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_like[minute]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_like[month-dash]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_like[month]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_like[second-dash]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_like[second-space-separator]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_like[second]
xarray.tests.test_cftimeindex ‑ test_parse_iso8601_like[year]
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]
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-33T]
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-33T]
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-33T]
xarray.tests.test_cftimeindex ‑ test_rounding_methods_against_datetimeindex[round-3663S]
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]

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

18042 tests found (test 5527 to 6260)

There are 18042 tests, see "Raw output" for the list of tests 5527 to 6260.
Raw output
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 ‑ test__convert_base_to_offset[1-10S]
xarray.tests.test_cftimeindex_resample ‑ test__convert_base_to_offset[15-5U]
xarray.tests.test_cftimeindex_resample ‑ test__convert_base_to_offset[17-3H]
xarray.tests.test_cftimeindex_resample ‑ test__convert_base_to_offset_invalid_index
xarray.tests.test_cftimeindex_resample ‑ test_base_and_offset_error
xarray.tests.test_cftimeindex_resample ‑ test_calendars[360_day]
xarray.tests.test_cftimeindex_resample ‑ test_calendars[all_leap]
xarray.tests.test_cftimeindex_resample ‑ test_calendars[gregorian]
xarray.tests.test_cftimeindex_resample ‑ test_calendars[julian]
xarray.tests.test_cftimeindex_resample ‑ test_calendars[noleap]
xarray.tests.test_cftimeindex_resample ‑ test_closed_label_defaults[A-right]
xarray.tests.test_cftimeindex_resample ‑ test_closed_label_defaults[AS-left]
xarray.tests.test_cftimeindex_resample ‑ test_closed_label_defaults[D-left]
xarray.tests.test_cftimeindex_resample ‑ test_closed_label_defaults[H-left]
xarray.tests.test_cftimeindex_resample ‑ test_closed_label_defaults[M-right]
xarray.tests.test_cftimeindex_resample ‑ test_closed_label_defaults[MS-left]
xarray.tests.test_cftimeindex_resample ‑ test_closed_label_defaults[Q-right]
xarray.tests.test_cftimeindex_resample ‑ test_closed_label_defaults[QS-left]
xarray.tests.test_cftimeindex_resample ‑ test_closed_label_defaults[S-left]
xarray.tests.test_cftimeindex_resample ‑ test_closed_label_defaults[T-left]
xarray.tests.test_cftimeindex_resample ‑ test_invalid_offset_error[10]
xarray.tests.test_cftimeindex_resample ‑ test_invalid_offset_error[5MS]
xarray.tests.test_cftimeindex_resample ‑ test_invalid_offset_error[foo]
xarray.tests.test_cftimeindex_resample ‑ test_origin[(1970, 1, 1, 3, 2)-left]
xarray.tests.test_cftimeindex_resample ‑ test_origin[(1970, 1, 1, 3, 2)-right]
xarray.tests.test_cftimeindex_resample ‑ test_origin[end-left]
xarray.tests.test_cftimeindex_resample ‑ test_origin[end-right]
xarray.tests.test_cftimeindex_resample ‑ test_origin[end_day-left]
xarray.tests.test_cftimeindex_resample ‑ test_origin[end_day-right]
xarray.tests.test_cftimeindex_resample ‑ test_origin[epoch-left]
xarray.tests.test_cftimeindex_resample ‑ test_origin[epoch-right]
xarray.tests.test_cftimeindex_resample ‑ test_origin[start-left]
xarray.tests.test_cftimeindex_resample ‑ test_origin[start-right]
xarray.tests.test_cftimeindex_resample ‑ test_origin[start_day-left]
xarray.tests.test_cftimeindex_resample ‑ test_origin[start_day-right]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-None-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-left-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-None-right-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-None-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-left-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-left-right-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-None-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-left-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[24-None-right-right-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-None-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-left-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-None-right-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-None-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-left-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-left-right-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-None-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-left-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[31-None-right-right-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-None-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-left-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-None-right-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-None-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-left-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-7A-MAY->85M]

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

18042 tests found (test 6261 to 6999)

There are 18042 tests, see "Raw output" for the list of tests 6261 to 6999.
Raw output
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-left-right-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-None-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-left-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-11D->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-11Q-JUN->22Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-11Q-JUN->51MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-11Q-JUN->5Q-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-3AS-MAR->14Q-FEB]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-3AS-MAR->6AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-3AS-MAR->AS-MAR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-3D->6D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-3D->D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-3MS->6MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-3MS->85D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-3MS->MS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-43QS-AUG->11A-JUN]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-43QS-AUG->21QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-43QS-AUG->86QS-AUG]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-6H->12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-6H->3H]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-6H->400T]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-7A-MAY->14A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-7A-MAY->3A-MAY]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-7A-MAY->85M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-7M->14M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-7M->2QS-APR]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-7M->3M]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-8003D->16006D]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-8003D->21AS]
xarray.tests.test_cftimeindex_resample ‑ test_resample[None-5S-right-right-8003D->4001D]
xarray.tests.test_cftimeindex_resample ‑ test_resample_invalid_loffset_cftimeindex
xarray.tests.test_cftimeindex_resample ‑ test_resample_loffset_cftimeindex[12H]
xarray.tests.test_cftimeindex_resample ‑ test_resample_loffset_cftimeindex[loffset1]
xarray.tests.test_cftimeindex_resample ‑ test_timedelta_offset
xarray.tests.test_coarsen ‑ test_coarsen_absent_dims_error[1-dask]
xarray.tests.test_coarsen ‑ test_coarsen_absent_dims_error[1-numpy]
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[1-numpy-False]
xarray.tests.test_coarsen ‑ test_coarsen_coords[1-numpy-True]
xarray.tests.test_coarsen ‑ test_coarsen_coords_cftime
xarray.tests.test_coarsen ‑ test_coarsen_da_keep_attrs[mean-argument1]
xarray.tests.test_coarsen ‑ test_coarsen_da_keep_attrs[reduce-argument0]
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-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-max-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-max-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-max-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-max-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-max-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-max-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-max-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-mean-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-mean-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-mean-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-mean-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-mean-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-mean-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-mean-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-mean-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-std-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-std-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-std-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-std-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-std-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-std-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-std-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-std-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-sum-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-sum-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-sum-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-sum-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-sum-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-sum-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-sum-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_da_reduce[numpy-sum-4-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_dataset[1-numpy-pad-right-False]
xarray.tests.test_coarsen ‑ test_coarsen_dataset[1-numpy-pad-right-True]
xarray.tests.test_coarsen ‑ test_coarsen_dataset[1-numpy-trim-left-False]
xarray.tests.test_coarsen ‑ test_coarsen_dataset[1-numpy-trim-left-True]
xarray.tests.test_coarsen ‑ test_coarsen_keep_attrs[mean-argument1]
xarray.tests.test_coarsen ‑ test_coarsen_keep_attrs[reduce-argument0]
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_coarsen ‑ test_coarsen_reduce[numpy-max-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-max-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-max-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-max-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-max-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-max-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-max-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-max-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-mean-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-mean-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-mean-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-mean-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-mean-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-mean-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-mean-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-mean-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-median-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-median-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-median-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-median-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-median-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-median-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-median-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-median-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-min-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-min-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-min-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-min-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-min-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-min-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-min-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-min-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-std-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-std-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-std-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-std-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-std-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-std-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-std-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-std-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-sum-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-sum-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-sum-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-sum-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-sum-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-sum-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-sum-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-sum-4-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-var-1-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-var-1-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-var-2-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-var-2-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-var-3-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-var-3-2]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-var-4-1]
xarray.tests.test_coarsen ‑ test_coarsen_reduce[numpy-var-4-2]
xarray.tests.test_coarsen.TestCoarsenConstruct ‑ test_coarsen_construct[False]
xarray.tests.test_coarsen.TestCoarsenConstruct ‑ test_coarsen_construct[True]
xarray.tests.test_coarsen.TestCoarsenConstruct ‑ test_coarsen_construct_keeps_all_coords
xarray.tests.test_coding ‑ test_CFMaskCoder_decode
xarray.tests.test_coding ‑ test_CFMaskCoder_decode_dask
xarray.tests.test_coding ‑ test_CFMaskCoder_encode_missing_fill_values_conflict[numeric-with-dtype]
xarray.tests.test_coding ‑ test_CFMaskCoder_encode_missing_fill_values_conflict[numeric-without-dtype]
xarray.tests.test_coding ‑ test_CFMaskCoder_encode_missing_fill_values_conflict[times-with-dtype]
xarray.tests.test_coding ‑ test_CFMaskCoder_missing_value
xarray.tests.test_coding ‑ test_coder_roundtrip
xarray.tests.test_coding ‑ test_decode_signed_from_unsigned[1]
xarray.tests.test_coding ‑ test_decode_signed_from_unsigned[2]
xarray.tests.test_coding ‑ test_decode_signed_from_unsigned[4]
xarray.tests.test_coding ‑ test_decode_signed_from_unsigned[8]
xarray.tests.test_coding ‑ test_decode_unsigned_from_signed[1]
xarray.tests.test_coding ‑ test_decode_unsigned_from_signed[2]
xarray.tests.test_coding ‑ test_decode_unsigned_from_signed[4]
xarray.tests.test_coding ‑ test_decode_unsigned_from_signed[8]
xarray.tests.test_coding ‑ test_scaling_converts_to_float32[f2]
xarray.tests.test_coding ‑ test_scaling_converts_to_float32[f4]
xarray.tests.test_coding ‑ test_scaling_converts_to_float32[i1]
xarray.tests.test_coding ‑ test_scaling_converts_to_float32[i2]
xarray.tests.test_coding ‑ test_scaling_converts_to_float32[u1]
xarray.tests.test_coding ‑ test_scaling_converts_to_float32[u2]
xarray.tests.test_coding ‑ test_scaling_offset_as_list[0.1-10]
xarray.tests.test_coding ‑ test_scaling_offset_as_list[0.1-scale_factor1]
xarray.tests.test_coding ‑ test_scaling_offset_as_list[add_offset1-10]
xarray.tests.test_coding ‑ test_scaling_offset_as_list[add_offset1-scale_factor1]
xarray.tests.test_coding_strings ‑ test_CharacterArrayCoder_char_dim_name[original0-string4]
xarray.tests.test_coding_strings ‑ test_CharacterArrayCoder_char_dim_name[original1-foo]
xarray.tests.test_coding_strings ‑ test_CharacterArrayCoder_encode[data0]
xarray.tests.test_coding_strings ‑ test_CharacterArrayCoder_encode[data1]
xarray.tests.test_coding_strings ‑ test_CharacterArrayCoder_roundtrip[original0]
xarray.tests.test_coding_strings ‑ test_CharacterArrayCoder_roundtrip[original1]
xarray.tests.test_coding_strings ‑ test_CharacterArrayCoder_roundtrip[original2]
xarray.tests.test_coding_strings ‑ test_CharacterArrayCoder_roundtrip[original3]
xarray.tests.test_coding_strings ‑ test_EncodedStringCoder_decode
xarray.tests.test_coding_strings ‑ test_EncodedStringCoder_decode_dask
xarray.tests.test_coding_strings ‑ test_EncodedStringCoder_encode
xarray.tests.test_coding_strings ‑ test_StackedBytesArray
xarray.tests.test_coding_strings ‑ test_StackedBytesArray_scalar
xarray.tests.test_coding_strings ‑ test_StackedBytesArray_vectorized_indexing
xarray.tests.test_coding_strings ‑ test_bytes_to_char
xarray.tests.test_coding_strings ‑ test_bytes_to_char_dask
xarray.tests.test_coding_strings ‑ test_char_to_bytes
xarray.tests.test_coding_strings ‑ test_char_to_bytes_dask
xarray.tests.test_coding_strings ‑ test_char_to_bytes_ndim_zero
xarray.tests.test_coding_strings ‑ test_char_to_bytes_size_zero
xarray.tests.test_coding_strings ‑ test_numpy_subclass_handling[bytes_]
xarray.tests.test_coding_strings ‑ test_numpy_subclass_handling[str_]
xarray.tests.test_coding_strings ‑ test_vlen_dtype
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_cf_timedelta[1D-days-numbers0]
xarray.tests.test_coding_times ‑ test_cf_timedelta[1h-hours-numbers2]
xarray.tests.test_coding_times ‑ test_cf_timedelta[1ms-milliseconds-numbers3]
xarray.tests.test_coding_times ‑ test_cf_timedelta[1ns-nanoseconds-numbers5]
xarray.tests.test_coding_times ‑ test_cf_timedelta[1us-microseconds-numbers4]
xarray.tests.test_coding_times ‑ test_cf_timedelta[NaT-days-nan]
xarray.tests.test_coding_times ‑ test_cf_timedelta[timedeltas1-days-numbers1]
xarray.tests.test_coding_times ‑ test_cf_timedelta[timedeltas6-None-numbers6]
xarray.tests.test_coding_times ‑ test_cf_timedelta[timedeltas7-hours-numbers7]
xarray.tests.test_coding_times ‑ test_cf_timedelta[timedeltas9-days-numbers9]
xarray.tests.test_coding_times ‑ test_cf_timedelta_2d
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[non_cftime_data0]
xarray.tests.test_coding_times ‑ test_contains_cftime_datetimes_non_cftimes[non_cftime_data1]
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[False]
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[360_day]
xarray.tests.test_coding_times ‑ test_decode_cf[365_day]
xarray.tests.test_coding_times ‑ test_decode_cf[366_day]
xarray.tests.test_coding_times ‑ test_decode_cf[all_leap]
xarray.tests.test_coding_times ‑ test_decode_cf[gregorian]
xarray.tests.test_coding_times ‑ test_decode_cf[julian]
xarray.tests.test_coding_times ‑ test_decode_cf[noleap]
xarray.tests.test_coding_times ‑ test_decode_cf[proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_decode_cf[standard]
xarray.tests.test_coding_times ‑ test_decode_cf_datetime_non_iso_strings
xarray.tests.test_coding_times ‑ test_decode_cf_datetime_non_standard_units
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_cf_datetime_uint[uint16]
xarray.tests.test_coding_times ‑ test_decode_cf_datetime_uint[uint32]
xarray.tests.test_coding_times ‑ test_decode_cf_datetime_uint[uint64]
xarray.tests.test_coding_times ‑ test_decode_cf_datetime_uint[uint8]
xarray.tests.test_coding_times ‑ test_decode_cf_time_bounds
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_encode_roundtrip_with_non_lowercase_letters[GREGORIAN]
xarray.tests.test_coding_times ‑ test_decode_encode_roundtrip_with_non_lowercase_letters[Gregorian]
xarray.tests.test_coding_times ‑ test_decode_encode_roundtrip_with_non_lowercase_letters[gregorian]
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_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-L-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-L-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-L-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-L-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-L-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-L-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-L-seconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-N-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-N-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-N-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-N-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-N-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-N-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-N-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-T-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-T-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-T-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-T-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-T-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-T-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-T-seconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-U-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-U-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-U-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-U-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-U-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-U-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[cftime_range-U-seconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-D-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-D-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-D-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-D-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-D-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-D-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-D-seconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-H-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-H-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-H-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-H-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-H-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-H-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-H-seconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-L-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-L-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-L-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-L-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-L-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-L-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-L-seconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-N-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-N-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-N-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-N-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-N-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-N-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-N-seconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-S-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-S-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-S-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-S-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-S-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-S-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-S-seconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-T-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-T-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-T-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-T-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-T-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-T-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-T-seconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-U-days]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-U-hours]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-U-microseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-U-milliseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-U-minutes]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-U-nanoseconds]
xarray.tests.test_coding_times ‑ test_encode_cf_datetime_defaults_to_correct_dtype[date_range-U-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_datetime_pandas_min
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[L]
xarray.tests.test_coding_times ‑ test_encode_decode_roundtrip_cftime[S]
xarray.tests.test_coding_times ‑ test_encode_decode_roundtrip_cftime[T]
xarray.tests.test_coding_times ‑ test_encode_decode_roundtrip_cftime[U]
xarray.tests.test_coding_times ‑ test_encode_decode_roundtrip_datetime64[D]
xarray.tests.test_coding_times ‑ test_encode_decode_roundtrip_datetime64[H]
xarray.tests.test_coding_times ‑ test_encode_decode_roundtrip_datetime64[L]
xarray.tests.test_coding_times ‑ test_encode_decode_roundtrip_datetime64[N]
xarray.tests.test_coding_times ‑ test_encode_decode_roundtrip_datetime64[S]
xarray.tests.test_coding_times ‑ test_encode_decode_roundtrip_datetime64[T]
xarray.tests.test_coding_times ‑ test_encode_decode_roundtrip_datetime64[U]
xarray.tests.test_coding_times ‑ test_encode_expected_failures
xarray.tests.test_coding_times ‑ test_encode_time_bounds
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_infer_datetime_units[D-days]
xarray.tests.test_coding_times ‑ test_infer_datetime_units[H-hours]
xarray.tests.test_coding_times ‑ test_infer_datetime_units[L-milliseconds]
xarray.tests.test_coding_times ‑ test_infer_datetime_units[N-nanoseconds]
xarray.tests.test_coding_times ‑ test_infer_datetime_units[S-seconds]
xarray.tests.test_coding_times ‑ test_infer_datetime_units[T-minutes]
xarray.tests.test_coding_times ‑ test_infer_datetime_units[U-microseconds]
xarray.tests.test_coding_times ‑ test_infer_datetime_units_with_NaT[dates0-days since 1900-01-01 00:00:00]
xarray.tests.test_coding_times ‑ test_infer_datetime_units_with_NaT[dates1-days since 1900-01-01 00:00:00]
xarray.tests.test_coding_times ‑ test_infer_datetime_units_with_NaT[dates2-days since 1970-01-01 00:00:00]
xarray.tests.test_coding_times ‑ test_infer_timedelta_units[deltas0-days]
xarray.tests.test_coding_times ‑ test_infer_timedelta_units[deltas1-hours]
xarray.tests.test_coding_times ‑ test_infer_timedelta_units[deltas2-minutes]
xarray.tests.test_coding_times ‑ test_infer_timedelta_units[deltas3-seconds]
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]

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

18042 tests found (test 7000 to 7809)

There are 18042 tests, see "Raw output" for the list of tests 7000 to 7809.
Raw output
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]
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_in_range[gregorian]
xarray.tests.test_coding_times ‑ test_use_cftime_default_standard_calendar_in_range[proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_use_cftime_default_standard_calendar_in_range[standard]
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_false_non_standard_calendar[1500-360_day]
xarray.tests.test_coding_times ‑ test_use_cftime_false_non_standard_calendar[1500-365_day]
xarray.tests.test_coding_times ‑ test_use_cftime_false_non_standard_calendar[1500-366_day]
xarray.tests.test_coding_times ‑ test_use_cftime_false_non_standard_calendar[1500-all_leap]
xarray.tests.test_coding_times ‑ test_use_cftime_false_non_standard_calendar[1500-julian]
xarray.tests.test_coding_times ‑ test_use_cftime_false_non_standard_calendar[1500-noleap]
xarray.tests.test_coding_times ‑ test_use_cftime_false_non_standard_calendar[2000-360_day]
xarray.tests.test_coding_times ‑ test_use_cftime_false_non_standard_calendar[2000-365_day]
xarray.tests.test_coding_times ‑ test_use_cftime_false_non_standard_calendar[2000-366_day]
xarray.tests.test_coding_times ‑ test_use_cftime_false_non_standard_calendar[2000-all_leap]
xarray.tests.test_coding_times ‑ test_use_cftime_false_non_standard_calendar[2000-julian]
xarray.tests.test_coding_times ‑ test_use_cftime_false_non_standard_calendar[2000-noleap]
xarray.tests.test_coding_times ‑ test_use_cftime_false_non_standard_calendar[2500-360_day]
xarray.tests.test_coding_times ‑ test_use_cftime_false_non_standard_calendar[2500-365_day]
xarray.tests.test_coding_times ‑ test_use_cftime_false_non_standard_calendar[2500-366_day]
xarray.tests.test_coding_times ‑ test_use_cftime_false_non_standard_calendar[2500-all_leap]
xarray.tests.test_coding_times ‑ test_use_cftime_false_non_standard_calendar[2500-julian]
xarray.tests.test_coding_times ‑ test_use_cftime_false_non_standard_calendar[2500-noleap]
xarray.tests.test_coding_times ‑ test_use_cftime_false_standard_calendar_in_range[gregorian]
xarray.tests.test_coding_times ‑ test_use_cftime_false_standard_calendar_in_range[proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_use_cftime_false_standard_calendar_in_range[standard]
xarray.tests.test_coding_times ‑ test_use_cftime_false_standard_calendar_out_of_range[1500-gregorian]
xarray.tests.test_coding_times ‑ test_use_cftime_false_standard_calendar_out_of_range[1500-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_use_cftime_false_standard_calendar_out_of_range[1500-standard]
xarray.tests.test_coding_times ‑ test_use_cftime_false_standard_calendar_out_of_range[2500-gregorian]
xarray.tests.test_coding_times ‑ test_use_cftime_false_standard_calendar_out_of_range[2500-proleptic_gregorian]
xarray.tests.test_coding_times ‑ test_use_cftime_false_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 ‑ test_combine_by_coords_raises_for_differing_types
xarray.tests.test_combine.TestCheckShapeTileIDs ‑ test_check_depths
xarray.tests.test_combine.TestCheckShapeTileIDs ‑ test_check_lengths
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_check_for_impossible_ordering
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_by_coords
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_by_coords_combine_attrs_variables[drop-attrs14-attrs24-expected_attrs4-False]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_by_coords_combine_attrs_variables[drop_conflicts-attrs18-attrs28-expected_attrs8-False]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_by_coords_combine_attrs_variables[identical-attrs15-attrs25-expected_attrs5-False]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_by_coords_combine_attrs_variables[identical-attrs16-attrs26-expected_attrs6-True]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_by_coords_combine_attrs_variables[no_conflicts-attrs10-attrs20-expected_attrs0-False]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_by_coords_combine_attrs_variables[no_conflicts-attrs11-attrs21-expected_attrs1-False]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_by_coords_combine_attrs_variables[no_conflicts-attrs12-attrs22-expected_attrs2-False]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_by_coords_combine_attrs_variables[no_conflicts-attrs13-attrs23-expected_attrs3-True]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_by_coords_combine_attrs_variables[override-attrs17-attrs27-expected_attrs7-False]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_by_coords_incomplete_hypercube
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_by_coords_no_concat
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_by_coords_previously_failed
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_by_coords_still_fails
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_coords_combine_attrs[<lambda>-expected3]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_coords_combine_attrs[drop-expected0]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_coords_combine_attrs[no_conflicts-expected1]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_coords_combine_attrs[override-expected2]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_coords_combine_attrs_identical
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_coords_join[inner-expected1]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_coords_join[left-expected2]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_coords_join[outer-expected0]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_coords_join[right-expected3]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_coords_join_exact
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_leaving_bystander_dimensions
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_nested_combine_attrs_drop_conflicts
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_nested_combine_attrs_variables[drop-attrs14-attrs24-expected_attrs4-False]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_nested_combine_attrs_variables[drop_conflicts-attrs18-attrs28-expected_attrs8-False]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_nested_combine_attrs_variables[identical-attrs15-attrs25-expected_attrs5-False]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_nested_combine_attrs_variables[identical-attrs16-attrs26-expected_attrs6-True]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_nested_combine_attrs_variables[no_conflicts-attrs10-attrs20-expected_attrs0-False]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_nested_combine_attrs_variables[no_conflicts-attrs11-attrs21-expected_attrs1-False]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_nested_combine_attrs_variables[no_conflicts-attrs12-attrs22-expected_attrs2-False]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_nested_combine_attrs_variables[no_conflicts-attrs13-attrs23-expected_attrs3-True]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_combine_nested_combine_attrs_variables[override-attrs17-attrs27-expected_attrs7-False]
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_empty_input
xarray.tests.test_combine.TestCombineDatasetsbyCoords ‑ test_infer_order_from_coords
xarray.tests.test_combine.TestCombineMixedObjectsbyCoords ‑ test_combine_by_coords_all_dataarrays_with_the_same_name
xarray.tests.test_combine.TestCombineMixedObjectsbyCoords ‑ test_combine_by_coords_all_named_dataarrays
xarray.tests.test_combine.TestCombineMixedObjectsbyCoords ‑ test_combine_by_coords_all_unnamed_dataarrays
xarray.tests.test_combine.TestCombineMixedObjectsbyCoords ‑ test_combine_by_coords_mixed_unnamed_dataarrays
xarray.tests.test_combine.TestCombineMixedObjectsbyCoords ‑ test_combine_coords_mixed_datasets_named_dataarrays
xarray.tests.test_combine.TestCombineND ‑ test_concat_once[dim1]
xarray.tests.test_combine.TestCombineND ‑ test_concat_once[new_dim]
xarray.tests.test_combine.TestCombineND ‑ test_concat_only_first_dim
xarray.tests.test_combine.TestCombineND ‑ test_concat_twice[dim1]
xarray.tests.test_combine.TestCombineND ‑ test_concat_twice[new_dim]
xarray.tests.test_combine.TestNestedCombine ‑ test_auto_combine_2d
xarray.tests.test_combine.TestNestedCombine ‑ test_auto_combine_2d_combine_attrs_kwarg
xarray.tests.test_combine.TestNestedCombine ‑ test_combine_concat_over_redundant_nesting
xarray.tests.test_combine.TestNestedCombine ‑ test_combine_nested_fill_value[2.0]
xarray.tests.test_combine.TestNestedCombine ‑ test_combine_nested_fill_value[2]
xarray.tests.test_combine.TestNestedCombine ‑ test_combine_nested_fill_value[fill_value0]
xarray.tests.test_combine.TestNestedCombine ‑ test_combine_nested_fill_value[fill_value3]
xarray.tests.test_combine.TestNestedCombine ‑ test_combine_nested_join[inner-expected1]
xarray.tests.test_combine.TestNestedCombine ‑ test_combine_nested_join[left-expected2]
xarray.tests.test_combine.TestNestedCombine ‑ test_combine_nested_join[outer-expected0]
xarray.tests.test_combine.TestNestedCombine ‑ test_combine_nested_join[right-expected3]
xarray.tests.test_combine.TestNestedCombine ‑ test_combine_nested_join_exact
xarray.tests.test_combine.TestNestedCombine ‑ test_combine_nested_missing_data_new_dim
xarray.tests.test_combine.TestNestedCombine ‑ test_combine_nested_unnamed_data_arrays
xarray.tests.test_combine.TestNestedCombine ‑ test_concat_multiple_dims
xarray.tests.test_combine.TestNestedCombine ‑ test_concat_name_symmetry
xarray.tests.test_combine.TestNestedCombine ‑ test_concat_one_dim_merge_another
xarray.tests.test_combine.TestNestedCombine ‑ test_empty_input
xarray.tests.test_combine.TestNestedCombine ‑ test_invalid_hypercube_input
xarray.tests.test_combine.TestNestedCombine ‑ test_merge_one_dim_concat_another
xarray.tests.test_combine.TestNestedCombine ‑ test_nested_combine_mixed_datasets_arrays
xarray.tests.test_combine.TestNestedCombine ‑ test_nested_concat
xarray.tests.test_combine.TestNestedCombine ‑ test_nested_concat_along_new_dim
xarray.tests.test_combine.TestNestedCombine ‑ test_nested_concat_too_many_dims_at_once
xarray.tests.test_combine.TestNestedCombine ‑ test_nested_merge
xarray.tests.test_combine.TestNewTileIDs ‑ test_get_new_tile_ids
xarray.tests.test_combine.TestNewTileIDs ‑ test_new_tile_id[old_id0-new_id0]
xarray.tests.test_combine.TestNewTileIDs ‑ test_new_tile_id[old_id1-new_id1]
xarray.tests.test_combine.TestNewTileIDs ‑ test_new_tile_id[old_id2-new_id2]
xarray.tests.test_combine.TestNewTileIDs ‑ test_new_tile_id[old_id3-new_id3]
xarray.tests.test_combine.TestNewTileIDs ‑ test_new_tile_id[old_id4-new_id4]
xarray.tests.test_combine.TestTileIDsFromCoords ‑ test_1d
xarray.tests.test_combine.TestTileIDsFromCoords ‑ test_2d
xarray.tests.test_combine.TestTileIDsFromCoords ‑ test_2d_plus_bystander_dim
xarray.tests.test_combine.TestTileIDsFromCoords ‑ test_coord_monotonically_decreasing
xarray.tests.test_combine.TestTileIDsFromCoords ‑ test_coord_not_monotonic
xarray.tests.test_combine.TestTileIDsFromCoords ‑ test_datetime_coords
xarray.tests.test_combine.TestTileIDsFromCoords ‑ test_lexicographic_sort_string_coords
xarray.tests.test_combine.TestTileIDsFromCoords ‑ test_no_concatenation_needed
xarray.tests.test_combine.TestTileIDsFromCoords ‑ test_no_dimension_coords
xarray.tests.test_combine.TestTileIDsFromCoords ‑ test_string_coords
xarray.tests.test_combine.TestTileIDsFromNestedList ‑ test_1d
xarray.tests.test_combine.TestTileIDsFromNestedList ‑ test_2d
xarray.tests.test_combine.TestTileIDsFromNestedList ‑ test_3d
xarray.tests.test_combine.TestTileIDsFromNestedList ‑ test_ignore_empty_list
xarray.tests.test_combine.TestTileIDsFromNestedList ‑ test_infer_from_datasets
xarray.tests.test_combine.TestTileIDsFromNestedList ‑ test_redundant_nesting
xarray.tests.test_combine.TestTileIDsFromNestedList ‑ test_single_dataset
xarray.tests.test_combine.TestTileIDsFromNestedList ‑ test_uneven_depth_input
xarray.tests.test_combine.TestTileIDsFromNestedList ‑ test_uneven_length_input
xarray.tests.test_computation ‑ test_apply_1d_and_0d
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_apply_exclude
xarray.tests.test_computation ‑ test_apply_groupby_add
xarray.tests.test_computation ‑ test_apply_identity
xarray.tests.test_computation ‑ test_apply_input_core_dimension
xarray.tests.test_computation ‑ test_apply_output_core_dimension
xarray.tests.test_computation ‑ test_apply_two_inputs
xarray.tests.test_computation ‑ test_apply_two_outputs
xarray.tests.test_computation ‑ test_autocov[None-0]
xarray.tests.test_computation ‑ test_autocov[None-1]
xarray.tests.test_computation ‑ test_autocov[None-2]
xarray.tests.test_computation ‑ test_autocov[None-3]
xarray.tests.test_computation ‑ test_autocov[None-4]
xarray.tests.test_computation ‑ test_autocov[dim3-0]
xarray.tests.test_computation ‑ test_autocov[dim3-1]
xarray.tests.test_computation ‑ test_autocov[dim3-2]
xarray.tests.test_computation ‑ test_autocov[dim3-3]
xarray.tests.test_computation ‑ test_autocov[dim3-4]
xarray.tests.test_computation ‑ test_autocov[time-0]
xarray.tests.test_computation ‑ test_autocov[time-1]
xarray.tests.test_computation ‑ test_autocov[time-2]
xarray.tests.test_computation ‑ test_autocov[time-3]
xarray.tests.test_computation ‑ test_autocov[time-4]
xarray.tests.test_computation ‑ test_autocov[x-0]
xarray.tests.test_computation ‑ test_autocov[x-1]
xarray.tests.test_computation ‑ test_autocov[x-2]
xarray.tests.test_computation ‑ test_autocov[x-3]
xarray.tests.test_computation ‑ test_autocov[x-4]
xarray.tests.test_computation ‑ test_broadcast_compat_data_1d
xarray.tests.test_computation ‑ test_broadcast_compat_data_2d
xarray.tests.test_computation ‑ test_collect_dict_values
xarray.tests.test_computation ‑ test_complex_cov
xarray.tests.test_computation ‑ test_corr[None-0]
xarray.tests.test_computation ‑ test_corr[None-1]
xarray.tests.test_computation ‑ test_corr[None-2]
xarray.tests.test_computation ‑ test_corr[time-0]
xarray.tests.test_computation ‑ test_corr[time-1]
xarray.tests.test_computation ‑ test_corr[time-2]
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_corr_only_dataarray
xarray.tests.test_computation ‑ test_cov[None-0-0]
xarray.tests.test_computation ‑ test_cov[None-0-1]
xarray.tests.test_computation ‑ test_cov[None-1-0]
xarray.tests.test_computation ‑ test_cov[None-1-1]
xarray.tests.test_computation ‑ test_cov[None-2-0]
xarray.tests.test_computation ‑ test_cov[None-2-1]
xarray.tests.test_computation ‑ test_cov[time-0-0]
xarray.tests.test_computation ‑ test_cov[time-0-1]
xarray.tests.test_computation ‑ test_cov[time-1-0]
xarray.tests.test_computation ‑ test_cov[time-1-1]
xarray.tests.test_computation ‑ test_cov[time-2-0]
xarray.tests.test_computation ‑ test_cov[time-2-1]
xarray.tests.test_computation ‑ test_covcorr_consistency[None-0]
xarray.tests.test_computation ‑ test_covcorr_consistency[None-1]
xarray.tests.test_computation ‑ test_covcorr_consistency[None-2]
xarray.tests.test_computation ‑ test_covcorr_consistency[None-3]
xarray.tests.test_computation ‑ test_covcorr_consistency[None-4]
xarray.tests.test_computation ‑ test_covcorr_consistency[None-5]
xarray.tests.test_computation ‑ test_covcorr_consistency[None-6]
xarray.tests.test_computation ‑ test_covcorr_consistency[None-7]
xarray.tests.test_computation ‑ test_covcorr_consistency[None-8]
xarray.tests.test_computation ‑ test_covcorr_consistency[time-0]
xarray.tests.test_computation ‑ test_covcorr_consistency[time-1]
xarray.tests.test_computation ‑ test_covcorr_consistency[time-2]
xarray.tests.test_computation ‑ test_covcorr_consistency[time-3]
xarray.tests.test_computation ‑ test_covcorr_consistency[time-4]
xarray.tests.test_computation ‑ test_covcorr_consistency[time-5]
xarray.tests.test_computation ‑ test_covcorr_consistency[time-6]
xarray.tests.test_computation ‑ test_covcorr_consistency[time-7]
xarray.tests.test_computation ‑ test_covcorr_consistency[time-8]
xarray.tests.test_computation ‑ test_covcorr_consistency[x-0]
xarray.tests.test_computation ‑ test_covcorr_consistency[x-1]
xarray.tests.test_computation ‑ test_covcorr_consistency[x-2]
xarray.tests.test_computation ‑ test_covcorr_consistency[x-3]
xarray.tests.test_computation ‑ test_covcorr_consistency[x-4]
xarray.tests.test_computation ‑ test_covcorr_consistency[x-5]
xarray.tests.test_computation ‑ test_covcorr_consistency[x-6]
xarray.tests.test_computation ‑ test_covcorr_consistency[x-7]
xarray.tests.test_computation ‑ test_covcorr_consistency[x-8]
xarray.tests.test_computation ‑ test_cross[a0-b0-ae0-be0-dim_0--1-False]
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-False]
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-False]
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-False]
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-False]
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-False]
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-False]
xarray.tests.test_computation ‑ test_cross[a6-b6-ae6-be6-cartesian--1-True]
xarray.tests.test_computation ‑ test_dataset_join
xarray.tests.test_computation ‑ test_dot[False]
xarray.tests.test_computation ‑ test_dot[True]
xarray.tests.test_computation ‑ test_dot_align_coords[False]
xarray.tests.test_computation ‑ test_dot_align_coords[True]
xarray.tests.test_computation ‑ test_join_dict_keys
xarray.tests.test_computation ‑ test_keep_attrs
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray[False]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray[True]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray[default]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray[drop]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray[drop_conflicts]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray[no_conflicts]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray[override]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray_variables[False-coord]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray_variables[False-dim]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray_variables[True-coord]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray_variables[True-dim]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray_variables[default-coord]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray_variables[default-dim]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray_variables[drop-coord]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray_variables[drop-dim]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray_variables[drop_conflicts-coord]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray_variables[drop_conflicts-dim]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray_variables[no_conflicts-coord]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray_variables[no_conflicts-dim]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray_variables[override-coord]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataarray_variables[override-dim]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset[False]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset[True]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset[default]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset[drop]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset[drop_conflicts]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset[no_conflicts]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset[override]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[False-coord]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[False-data]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[False-dim]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[True-coord]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[True-data]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[True-dim]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[default-coord]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[default-data]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[default-dim]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[drop-coord]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[drop-data]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[drop-dim]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[drop_conflicts-coord]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[drop_conflicts-data]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[drop_conflicts-dim]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[no_conflicts-coord]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[no_conflicts-data]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[no_conflicts-dim]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[override-coord]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[override-data]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_dataset_variables[override-dim]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_variable[False]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_variable[True]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_variable[default]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_variable[drop]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_variable[drop_conflicts]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_variable[no_conflicts]
xarray.tests.test_computation ‑ test_keep_attrs_strategies_variable[override]
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_ordered_set_intersection
xarray.tests.test_computation ‑ test_ordered_set_union
xarray.tests.test_computation ‑ test_output_wrong_dim_size
xarray.tests.test_computation ‑ test_output_wrong_dims
xarray.tests.test_computation ‑ test_output_wrong_number
xarray.tests.test_computation ‑ test_polyfit_polyval_integration[1D-datetime-dask]
xarray.tests.test_computation ‑ test_polyfit_polyval_integration[1D-datetime-nodask]
xarray.tests.test_computation ‑ test_polyfit_polyval_integration[1D-simple-dask]
xarray.tests.test_computation ‑ test_polyfit_polyval_integration[1D-simple-nodask]
xarray.tests.test_computation ‑ test_polyfit_polyval_integration[1D-timedelta-dask]
xarray.tests.test_computation ‑ test_polyfit_polyval_integration[1D-timedelta-nodask]
xarray.tests.test_computation ‑ test_polyfit_polyval_integration[2D-datetime-dask]
xarray.tests.test_computation ‑ test_polyfit_polyval_integration[2D-datetime-nodask]
xarray.tests.test_computation ‑ test_polyfit_polyval_integration[2D-simple-dask]
xarray.tests.test_computation ‑ test_polyfit_polyval_integration[2D-simple-nodask]
xarray.tests.test_computation ‑ test_polyfit_polyval_integration[2D-timedelta-dask]
xarray.tests.test_computation ‑ test_polyfit_polyval_integration[2D-timedelta-nodask]
xarray.tests.test_computation ‑ test_polyval[array-dataset-dask]
xarray.tests.test_computation ‑ test_polyval[array-dataset-nodask]
xarray.tests.test_computation ‑ test_polyval[broadcast-x-dask]
xarray.tests.test_computation ‑ test_polyval[broadcast-x-nodask]
xarray.tests.test_computation ‑ test_polyval[dataset-array-dask]
xarray.tests.test_computation ‑ test_polyval[dataset-array-nodask]
xarray.tests.test_computation ‑ test_polyval[dataset-dataset-dask]
xarray.tests.test_computation ‑ test_polyval[dataset-dataset-nodask]
xarray.tests.test_computation ‑ test_polyval[datetime-dask]
xarray.tests.test_computation ‑ test_polyval[datetime-nodask]
xarray.tests.test_computation ‑ test_polyval[int32-degree-dask]
xarray.tests.test_computation ‑ test_polyval[int32-degree-nodask]
xarray.tests.test_computation ‑ test_polyval[int64-degree-dask]
xarray.tests.test_computation ‑ test_polyval[int64-degree-nodask]
xarray.tests.test_computation ‑ test_polyval[reordered-index-dask]
xarray.tests.test_computation ‑ test_polyval[reordered-index-nodask]
xarray.tests.test_computation ‑ test_polyval[shared-dim-dask]
xarray.tests.test_computation ‑ test_polyval[shared-dim-nodask]
xarray.tests.test_computation ‑ test_polyval[simple-dask]
xarray.tests.test_computation ‑ test_polyval[simple-nodask]
xarray.tests.test_computation ‑ test_polyval[sparse-index-dask]
xarray.tests.test_computation ‑ test_polyval[sparse-index-nodask]
xarray.tests.test_computation ‑ test_polyval[timedelta-dask]
xarray.tests.test_computation ‑ test_polyval[timedelta-nodask]
xarray.tests.test_computation ‑ test_polyval[uint8-degree-dask]
xarray.tests.test_computation ‑ test_polyval[uint8-degree-nodask]
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_polyval_degree_dim_checks
xarray.tests.test_computation ‑ test_result_name
xarray.tests.test_computation ‑ test_signature_properties
xarray.tests.test_computation ‑ test_unified_dim_sizes
xarray.tests.test_computation ‑ test_vectorize
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
xarray.tests.test_computation ‑ test_vectorize_exclude_dims_dask
xarray.tests.test_computation ‑ test_where
xarray.tests.test_computation ‑ test_where_attrs
xarray.tests.test_concat ‑ test_concat_all_empty
xarray.tests.test_concat ‑ test_concat_attrs_first_variable[attr20-attr10]
xarray.tests.test_concat ‑ test_concat_attrs_first_variable[attr20-attr11]
xarray.tests.test_concat ‑ test_concat_attrs_first_variable[attr20-attr12]
xarray.tests.test_concat ‑ test_concat_attrs_first_variable[attr21-attr10]
xarray.tests.test_concat ‑ test_concat_attrs_first_variable[attr21-attr11]
xarray.tests.test_concat ‑ test_concat_attrs_first_variable[attr21-attr12]
xarray.tests.test_concat ‑ test_concat_compat
xarray.tests.test_concat ‑ test_concat_fill_missing_variables[False-False]
xarray.tests.test_concat ‑ test_concat_fill_missing_variables[False-True]
xarray.tests.test_concat ‑ test_concat_fill_missing_variables[True-False]
xarray.tests.test_concat ‑ test_concat_fill_missing_variables[True-True]
xarray.tests.test_concat ‑ test_concat_index_not_same_dim
xarray.tests.test_concat ‑ test_concat_merge_single_non_dim_coord
xarray.tests.test_concat ‑ test_concat_missing_multiple_consecutive_var
xarray.tests.test_concat ‑ test_concat_missing_var
xarray.tests.test_concat ‑ test_concat_multiple_datasets_missing_vars[False]
xarray.tests.test_concat ‑ test_concat_multiple_datasets_missing_vars[True]
xarray.tests.test_concat ‑ test_concat_multiple_datasets_with_multiple_missing_variables
xarray.tests.test_concat ‑ test_concat_multiple_missing_variables
xarray.tests.test_concat ‑ test_concat_not_all_indexes
xarray.tests.test_concat ‑ test_concat_order_when_filling_missing
xarray.tests.test_concat ‑ test_concat_preserve_coordinate_order
xarray.tests.test_concat ‑ test_concat_second_empty
xarray.tests.test_concat ‑ test_concat_type_of_missing_fill
xarray.tests.test_concat ‑ test_concat_typing_check
xarray.tests.test_concat.TestConcatDataArray ‑ test_concat
xarray.tests.test_concat.TestConcatDataArray ‑ test_concat_combine_attrs_kwarg
xarray.tests.test_concat.TestConcatDataArray ‑ test_concat_coord_name
xarray.tests.test_concat.TestConcatDataArray ‑ test_concat_encoding
xarray.tests.test_concat.TestConcatDataArray ‑ test_concat_fill_value[2.0]
xarray.tests.test_concat.TestConcatDataArray ‑ test_concat_fill_value[2]
xarray.tests.test_concat.TestConcatDataArray ‑ test_concat_fill_value[fill_value0]
xarray.tests.test_concat.TestConcatDataArray ‑ test_concat_join_kwarg
xarray.tests.test_concat.TestConcatDataArray ‑ test_concat_lazy
xarray.tests.test_concat.TestConcatDataArray ‑ test_concat_str_dtype[x1-bytes]
xarray.tests.test_concat.TestConcatDataArray ‑ test_concat_str_dtype[x1-str]
xarray.tests.test_concat.TestConcatDataArray ‑ test_concat_str_dtype[x2-bytes]
xarray.tests.test_concat.TestConcatDataArray ‑ test_concat_str_dtype[x2-str]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_2
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_along_new_dim_multiindex
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_autoalign
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg[<lambda>-var1_attrs9-var2_attrs9-expected_attrs9-False]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg[drop-var1_attrs4-var2_attrs4-expected_attrs4-False]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg[drop_conflicts-var1_attrs8-var2_attrs8-expected_attrs8-False]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg[identical-var1_attrs5-var2_attrs5-expected_attrs5-False]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg[identical-var1_attrs6-var2_attrs6-expected_attrs6-True]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg[no_conflicts-var1_attrs0-var2_attrs0-expected_attrs0-False]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg[no_conflicts-var1_attrs1-var2_attrs1-expected_attrs1-False]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg[no_conflicts-var1_attrs2-var2_attrs2-expected_attrs2-False]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg[no_conflicts-var1_attrs3-var2_attrs3-expected_attrs3-True]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg[override-var1_attrs7-var2_attrs7-expected_attrs7-False]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg_variables[<lambda>-attrs19-attrs29-expected_attrs9-False]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg_variables[drop-attrs14-attrs24-expected_attrs4-False]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg_variables[drop_conflicts-attrs18-attrs28-expected_attrs8-False]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg_variables[identical-attrs15-attrs25-expected_attrs5-False]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg_variables[identical-attrs16-attrs26-expected_attrs6-True]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg_variables[no_conflicts-attrs10-attrs20-expected_attrs0-False]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg_variables[no_conflicts-attrs11-attrs21-expected_attrs1-False]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg_variables[no_conflicts-attrs12-attrs22-expected_attrs2-False]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg_variables[no_conflicts-attrs13-attrs23-expected_attrs3-True]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_combine_attrs_kwarg_variables[override-attrs17-attrs27-expected_attrs7-False]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_constant_index
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_coords
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_coords_kwarg[dim1-all]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_coords_kwarg[dim1-different]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_coords_kwarg[dim1-minimal]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_coords_kwarg[dim2-all]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_coords_kwarg[dim2-different]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_coords_kwarg[dim2-minimal]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_data_vars
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_data_vars_typing
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_dim_is_dataarray
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_dim_is_variable
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_dim_precedence
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_do_not_promote
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_errors
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_fill_value[2.0]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_fill_value[2]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_fill_value[fill_value0]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_fill_value[fill_value3]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_join_kwarg
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_merge_variables_present_in_some_datasets
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_multiindex
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_promote_shape
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_simple[dim1-different]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_simple[dim1-minimal]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_simple[dim2-different]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_simple[dim2-minimal]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_size0
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_str_dtype[x1-bytes]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_str_dtype[x1-str]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_str_dtype[x2-bytes]
xarray.tests.test_concat.TestConcatDataset ‑ test_concat_str_dtype[x2-str]
xarray.tests.test_conventions ‑ test_decode_cf_error_includes_variable_name
xarray.tests.test_conventions ‑ test_decode_cf_variable_cftime
xarray.tests.test_conventions ‑ test_decode_cf_variable_datetime64
xarray.tests.test_conventions ‑ test_decode_cf_variable_timedelta64
xarray.tests.test_conventions ‑ test_decode_cf_with_conflicting_fill_missing_value
xarray.tests.test_conventions ‑ test_scalar_units
xarray.tests.test_conventions.TestBoolTypeArray ‑ test_booltype_array
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_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.TestDecodeCFVariableWithArrayUnits ‑ test_decode_cf_variable_with_array_units
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_conventions.TestNativeEndiannessArray ‑ test
xarray.tests.test_cupy
xarray.tests.test_dask ‑ test_auto_chunk_da[obj0]
xarray.tests.test_dask ‑ test_basic_compute
xarray.tests.test_dask ‑ test_dask_kwargs_dataarray[compute]
xarray.tests.test_dask ‑ test_dask_kwargs_dataarray[load]
xarray.tests.test_dask ‑ test_dask_kwargs_dataarray[persist]
xarray.tests.test_dask ‑ test_dask_kwargs_dataset[compute]
xarray.tests.test_dask ‑ test_dask_kwargs_dataset[load]
xarray.tests.test_dask ‑ test_dask_kwargs_dataset[persist]
xarray.tests.test_dask ‑ test_dask_kwargs_variable[compute]
xarray.tests.test_dask ‑ test_dask_kwargs_variable[load]
xarray.tests.test_dask ‑ test_dask_layers_and_dependencies
xarray.tests.test_dask ‑ test_dataarray_with_dask_coords
xarray.tests.test_dask ‑ test_graph_manipulation
xarray.tests.test_dask ‑ test_identical_coords_no_computes
xarray.tests.test_dask ‑ test_lazy_array_equiv_merge[broadcast_equals]
xarray.tests.test_dask ‑ test_lazy_array_equiv_merge[equals]
xarray.tests.test_dask ‑ test_lazy_array_equiv_merge[identical]
xarray.tests.test_dask ‑ test_lazy_array_equiv_merge[no_conflicts]
xarray.tests.test_dask ‑ test_lazy_array_equiv_variables[broadcast_equals]
xarray.tests.test_dask ‑ test_lazy_array_equiv_variables[equals]
xarray.tests.test_dask ‑ test_lazy_array_equiv_variables[identical]
xarray.tests.test_dask ‑ test_lazy_array_equiv_variables[no_conflicts]
xarray.tests.test_dask ‑ test_make_meta
xarray.tests.test_dask ‑ test_map_blocks[obj0]
xarray.tests.test_dask ‑ test_map_blocks[obj1]
xarray.tests.test_dask ‑ test_map_blocks_add_attrs[obj0]
xarray.tests.test_dask ‑ test_map_blocks_add_attrs[obj1]
xarray.tests.test_dask ‑ test_map_blocks_change_name
xarray.tests.test_dask ‑ test_map_blocks_convert_args_to_list[obj0]
xarray.tests.test_dask ‑ test_map_blocks_convert_args_to_list[obj1]
xarray.tests.test_dask ‑ test_map_blocks_da_ds_with_template[obj0]
xarray.tests.test_dask ‑ test_map_blocks_da_ds_with_template[obj1]
xarray.tests.test_dask ‑ test_map_blocks_da_transformations[<lambda>0]
xarray.tests.test_dask ‑ test_map_blocks_da_transformations[<lambda>1]
xarray.tests.test_dask ‑ test_map_blocks_da_transformations[<lambda>2]
xarray.tests.test_dask ‑ test_map_blocks_da_transformations[<lambda>3]
xarray.tests.test_dask ‑ test_map_blocks_da_transformations[<lambda>4]
xarray.tests.test_dask ‑ test_map_blocks_da_transformations[<lambda>5]
xarray.tests.test_dask ‑ test_map_blocks_da_transformations[<lambda>6]
xarray.tests.test_dask ‑ test_map_blocks_da_transformations[<lambda>7]
xarray.tests.test_dask ‑ test_map_blocks_dask_args
xarray.tests.test_dask ‑ test_map_blocks_ds_transformations[<lambda>0]
xarray.tests.test_dask ‑ test_map_blocks_ds_transformations[<lambda>1]
xarray.tests.test_dask ‑ test_map_blocks_ds_transformations[<lambda>2]
xarray.tests.test_dask ‑ test_map_blocks_ds_transformations[<lambda>3]
xarray.tests.test_dask ‑ test_map_blocks_ds_transformations[<lambda>4]
xarray.tests.test_dask ‑ test_map_blocks_ds_transformations[<lambda>5]
xarray.tests.test_dask ‑ test_map_blocks_ds_transformations[<lambda>6]
xarray.tests.test_dask ‑ test_map_blocks_ds_transformations[<lambda>7]
xarray.tests.test_dask ‑ test_map_blocks_error
xarray.tests.test_dask ‑ test_map_blocks_errors_bad_template[obj0]
xarray.tests.test_dask ‑ test_map_blocks_errors_bad_template[obj1]
xarray.tests.test_dask ‑ test_map_blocks_errors_bad_template_2
xarray.tests.test_dask ‑ test_map_blocks_hlg_layers
xarray.tests.test_dask ‑ test_map_blocks_kwargs[obj0]
xarray.tests.test_dask ‑ test_map_blocks_kwargs[obj1]
xarray.tests.test_dask ‑ test_map_blocks_mixed_type_inputs[obj0]
xarray.tests.test_dask ‑ test_map_blocks_mixed_type_inputs[obj1]
xarray.tests.test_dask ‑ test_map_blocks_object_method[obj0]
xarray.tests.test_dask ‑ test_map_blocks_object_method[obj1]
xarray.tests.test_dask ‑ test_map_blocks_template_convert_object
xarray.tests.test_dask ‑ test_map_blocks_to_array
xarray.tests.test_dask ‑ test_more_transforms_pass_lazy_array_equiv
xarray.tests.test_dask ‑ test_new_index_var_computes_once
xarray.tests.test_dask ‑ test_normalize_token_with_backend
xarray.tests.test_dask ‑ test_optimize
xarray.tests.test_dask ‑ test_persist_DataArray[<lambda>0]
xarray.tests.test_dask ‑ test_persist_DataArray[<lambda>1]
xarray.tests.test_dask ‑ test_persist_Dataset[<lambda>0]
xarray.tests.test_dask ‑ test_persist_Dataset[<lambda>1]
xarray.tests.test_dask ‑ test_raise_if_dask_computes
xarray.tests.test_dask ‑ test_recursive_token
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>0-obj0]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>0-obj1]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>0-obj2]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>0-obj3]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>1-obj0]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>1-obj1]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>1-obj2]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>1-obj3]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>2-obj0]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>2-obj1]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>2-obj2]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>2-obj3]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>3-obj0]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>3-obj1]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>3-obj2]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>3-obj3]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>4-obj0]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>4-obj1]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>4-obj2]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>4-obj3]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>5-obj0]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>5-obj1]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>5-obj2]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>5-obj3]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>6-obj0]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>6-obj1]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>6-obj2]
xarray.tests.test_dask ‑ test_token_changes_on_transform[<lambda>6-obj3]
xarray.tests.test_dask ‑ test_token_changes_when_buffer_changes[obj0]
xarray.tests.test_dask ‑ test_token_changes_when_buffer_changes[obj1]
xarray.tests.test_dask ‑ test_token_changes_when_data_changes[obj0]
xarray.tests.test_dask ‑ test_token_changes_when_data_changes[obj1]
xarray.tests.test_dask ‑ test_token_changes_when_data_changes[obj2]
xarray.tests.test_dask ‑ test_token_changes_when_data_changes[obj3]
xarray.tests.test_dask ‑ test_token_identical[obj0-<lambda>0]
xarray.tests.test_dask ‑ test_token_identical[obj0-<lambda>1]
xarray.tests.test_dask ‑ test_token_identical[obj0-<lambda>2]
xarray.tests.test_dask ‑ test_token_identical[obj1-<lambda>0]
xarray.tests.test_dask ‑ test_token_identical[obj1-<lambda>1]
xarray.tests.test_dask ‑ test_token_identical[obj1-<lambda>2]
xarray.tests.test_dask ‑ test_token_identical[obj2-<lambda>0]
xarray.tests.test_dask ‑ test_token_identical[obj2-<lambda>1]
xarray.tests.test_dask ‑ test_token_identical[obj2-<lambda>2]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>0-obj0]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>0-obj1]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>1-obj0]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>1-obj1]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>10-obj0]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>10-obj1]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>11-obj0]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>11-obj1]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>12-obj0]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>12-obj1]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>13-obj0]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>13-obj1]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>14-obj0]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>14-obj1]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>15-obj0]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>15-obj1]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>16-obj0]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>16-obj1]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>17-obj0]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>17-obj1]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>2-obj0]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>2-obj1]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>3-obj0]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>3-obj1]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>4-obj0]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>4-obj1]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>5-obj0]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>5-obj1]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>6-obj0]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>6-obj1]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>7-obj0]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>7-obj1]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>8-obj0]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>8-obj1]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>9-obj0]
xarray.tests.test_dask ‑ test_transforms_pass_lazy_array_equiv[<lambda>9-obj1]
xarray.tests.test_dask ‑ test_unify_chunks
xarray.tests.test_dask ‑ test_unify_chunks_shallow_copy[<lambda>0-obj0]
xarray.tests.test_dask ‑ test_unify_chunks_shallow_copy[<lambda>0-obj1]
xarray.tests.test_dask ‑ test_unify_chunks_shallow_copy[<lambda>1-obj0]
xarray.tests.test_dask ‑ test_unify_chunks_shallow_copy[<lambda>1-obj1]

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

18042 tests found (test 7810 to 8714)

There are 18042 tests, see "Raw output" for the list of tests 7810 to 8714.
Raw output
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_chunk
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_compute
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_concat_loads_variables
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_dataarray_getattr
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_dataarray_pickle
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_dataarray_repr
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_dataset_getattr
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_dataset_pickle
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_dataset_repr
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_dot
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_from_dask_variable
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_groupby
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_groupby_first_last[first]
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_groupby_first_last[last]
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_lazy_array
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_lazy_dataset
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_merge
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_new_chunk
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_persist
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_rechunk
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_reindex
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_rolling
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_simultaneous_compute
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_stack
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_to_dataset_roundtrip
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_tokenize_duck_dask_array
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_ufuncs
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_values
xarray.tests.test_dask.TestDataArrayAndDataset ‑ test_where_dispatching
xarray.tests.test_dask.TestToDaskDataFrame ‑ test_to_dask_dataframe
xarray.tests.test_dask.TestToDaskDataFrame ‑ test_to_dask_dataframe_2D
xarray.tests.test_dask.TestToDaskDataFrame ‑ test_to_dask_dataframe_2D_set_index
xarray.tests.test_dask.TestToDaskDataFrame ‑ test_to_dask_dataframe_coordinates
xarray.tests.test_dask.TestToDaskDataFrame ‑ test_to_dask_dataframe_dim_order
xarray.tests.test_dask.TestToDaskDataFrame ‑ test_to_dask_dataframe_no_coordinate
xarray.tests.test_dask.TestToDaskDataFrame ‑ test_to_dask_dataframe_not_daskarray
xarray.tests.test_dask.TestVariable ‑ test_basics
xarray.tests.test_dask.TestVariable ‑ test_binary_op
xarray.tests.test_dask.TestVariable ‑ test_binary_op_bitshift
xarray.tests.test_dask.TestVariable ‑ test_bivariate_ufunc
xarray.tests.test_dask.TestVariable ‑ test_chunk
xarray.tests.test_dask.TestVariable ‑ test_compute
xarray.tests.test_dask.TestVariable ‑ test_concat
xarray.tests.test_dask.TestVariable ‑ test_copy
xarray.tests.test_dask.TestVariable ‑ test_equals
xarray.tests.test_dask.TestVariable ‑ test_indexing
xarray.tests.test_dask.TestVariable ‑ test_missing_methods
xarray.tests.test_dask.TestVariable ‑ test_missing_values
xarray.tests.test_dask.TestVariable ‑ test_persist
xarray.tests.test_dask.TestVariable ‑ test_pickle
xarray.tests.test_dask.TestVariable ‑ test_reduce
xarray.tests.test_dask.TestVariable ‑ test_repr
xarray.tests.test_dask.TestVariable ‑ test_roll
xarray.tests.test_dask.TestVariable ‑ test_setitem_dask_array[expected_data0-0]
xarray.tests.test_dask.TestVariable ‑ test_setitem_dask_array[expected_data1-index1]
xarray.tests.test_dask.TestVariable ‑ test_setitem_dask_array[expected_data2-index2]
xarray.tests.test_dask.TestVariable ‑ test_setitem_dask_array[expected_data3-index3]
xarray.tests.test_dask.TestVariable ‑ test_setitem_dask_array[expected_data4-index4]
xarray.tests.test_dask.TestVariable ‑ test_setitem_dask_array[expected_data5-index5]
xarray.tests.test_dask.TestVariable ‑ test_setitem_dask_array[expected_data6-index6]
xarray.tests.test_dask.TestVariable ‑ test_shift
xarray.tests.test_dask.TestVariable ‑ test_squeeze
xarray.tests.test_dask.TestVariable ‑ test_tokenize_duck_dask_array
xarray.tests.test_dask.TestVariable ‑ test_transpose
xarray.tests.test_dask.TestVariable ‑ test_unary_op
xarray.tests.test_dask.TestVariable ‑ test_univariate_ufunc
xarray.tests.test_dataarray ‑ test_clip[1-dask]
xarray.tests.test_dataarray ‑ test_clip[1-numpy]
xarray.tests.test_dataarray ‑ test_deepcopy_nested_attrs
xarray.tests.test_dataarray ‑ test_deepcopy_obj_array
xarray.tests.test_dataarray ‑ test_deepcopy_recursive
xarray.tests.test_dataarray ‑ test_delete_coords
xarray.tests.test_dataarray ‑ test_isin[dask-repeating_ints]
xarray.tests.test_dataarray ‑ test_isin[numpy-repeating_ints]
xarray.tests.test_dataarray ‑ test_name_in_masking
xarray.tests.test_dataarray ‑ test_no_dict
xarray.tests.test_dataarray ‑ test_no_warning_for_all_nan
xarray.tests.test_dataarray ‑ test_raise_no_warning_for_nan_in_binary_ops
xarray.tests.test_dataarray ‑ test_subclass_slots
xarray.tests.test_dataarray ‑ test_weakref
xarray.tests.test_dataarray.TestDataArray ‑ test__title_for_slice
xarray.tests.test_dataarray.TestDataArray ‑ test__title_for_slice_truncate
xarray.tests.test_dataarray.TestDataArray ‑ test_align
xarray.tests.test_dataarray.TestDataArray ‑ test_align_copy
xarray.tests.test_dataarray.TestDataArray ‑ test_align_dtype
xarray.tests.test_dataarray.TestDataArray ‑ test_align_exclude
xarray.tests.test_dataarray.TestDataArray ‑ test_align_indexes
xarray.tests.test_dataarray.TestDataArray ‑ test_align_mixed_indexes
xarray.tests.test_dataarray.TestDataArray ‑ test_align_override
xarray.tests.test_dataarray.TestDataArray ‑ test_align_override_error[darrays0]
xarray.tests.test_dataarray.TestDataArray ‑ test_align_override_error[darrays1]
xarray.tests.test_dataarray.TestDataArray ‑ test_align_str_dtype
xarray.tests.test_dataarray.TestDataArray ‑ test_align_without_indexes_errors
xarray.tests.test_dataarray.TestDataArray ‑ test_align_without_indexes_exclude
xarray.tests.test_dataarray.TestDataArray ‑ test_array_interface
xarray.tests.test_dataarray.TestDataArray ‑ test_assign_attrs
xarray.tests.test_dataarray.TestDataArray ‑ test_assign_coords
xarray.tests.test_dataarray.TestDataArray ‑ test_assign_coords_existing_multiindex
xarray.tests.test_dataarray.TestDataArray ‑ test_astype_attrs
xarray.tests.test_dataarray.TestDataArray ‑ test_astype_dtype
xarray.tests.test_dataarray.TestDataArray ‑ test_astype_order
xarray.tests.test_dataarray.TestDataArray ‑ test_astype_subok
xarray.tests.test_dataarray.TestDataArray ‑ test_binary_op_join_setting
xarray.tests.test_dataarray.TestDataArray ‑ test_binary_op_propagate_indexes
xarray.tests.test_dataarray.TestDataArray ‑ test_broadcast_arrays
xarray.tests.test_dataarray.TestDataArray ‑ test_broadcast_arrays_exclude
xarray.tests.test_dataarray.TestDataArray ‑ test_broadcast_arrays_misaligned
xarray.tests.test_dataarray.TestDataArray ‑ test_broadcast_arrays_nocopy
xarray.tests.test_dataarray.TestDataArray ‑ test_broadcast_coordinates
xarray.tests.test_dataarray.TestDataArray ‑ test_broadcast_equals
xarray.tests.test_dataarray.TestDataArray ‑ test_broadcast_like
xarray.tests.test_dataarray.TestDataArray ‑ test_chunk
xarray.tests.test_dataarray.TestDataArray ‑ test_combine_first
xarray.tests.test_dataarray.TestDataArray ‑ test_constructor
xarray.tests.test_dataarray.TestDataArray ‑ test_constructor_dask_coords
xarray.tests.test_dataarray.TestDataArray ‑ test_constructor_from_0d
xarray.tests.test_dataarray.TestDataArray ‑ test_constructor_from_self_described
xarray.tests.test_dataarray.TestDataArray ‑ test_constructor_from_self_described_chunked
xarray.tests.test_dataarray.TestDataArray ‑ test_constructor_invalid
xarray.tests.test_dataarray.TestDataArray ‑ test_contains
xarray.tests.test_dataarray.TestDataArray ‑ test_coord_coords
xarray.tests.test_dataarray.TestDataArray ‑ test_coordinate_diff
xarray.tests.test_dataarray.TestDataArray ‑ test_coords
xarray.tests.test_dataarray.TestDataArray ‑ test_coords_alignment
xarray.tests.test_dataarray.TestDataArray ‑ test_coords_delitem_delete_indexes
xarray.tests.test_dataarray.TestDataArray ‑ test_coords_delitem_multiindex_level
xarray.tests.test_dataarray.TestDataArray ‑ test_coords_non_string
xarray.tests.test_dataarray.TestDataArray ‑ test_coords_replacement_alignment
xarray.tests.test_dataarray.TestDataArray ‑ test_coords_to_index
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_copy_with_data
xarray.tests.test_dataarray.TestDataArray ‑ test_cumops
xarray.tests.test_dataarray.TestDataArray ‑ test_curvefit[False]
xarray.tests.test_dataarray.TestDataArray ‑ test_curvefit[True]
xarray.tests.test_dataarray.TestDataArray ‑ test_curvefit_helpers
xarray.tests.test_dataarray.TestDataArray ‑ test_data_property
xarray.tests.test_dataarray.TestDataArray ‑ test_dataarray_diff_n1
xarray.tests.test_dataarray.TestDataArray ‑ test_dataset_getitem
xarray.tests.test_dataarray.TestDataArray ‑ test_dataset_math
xarray.tests.test_dataarray.TestDataArray ‑ test_dims
xarray.tests.test_dataarray.TestDataArray ‑ test_dot
xarray.tests.test_dataarray.TestDataArray ‑ test_dot_align_coords
xarray.tests.test_dataarray.TestDataArray ‑ test_drop_all_multiindex_levels
xarray.tests.test_dataarray.TestDataArray ‑ test_drop_coordinates
xarray.tests.test_dataarray.TestDataArray ‑ test_drop_index_labels
xarray.tests.test_dataarray.TestDataArray ‑ test_drop_index_positions
xarray.tests.test_dataarray.TestDataArray ‑ test_drop_indexes
xarray.tests.test_dataarray.TestDataArray ‑ test_drop_multiindex_level
xarray.tests.test_dataarray.TestDataArray ‑ test_dropna
xarray.tests.test_dataarray.TestDataArray ‑ test_empty_dataarrays_return_empty_result
xarray.tests.test_dataarray.TestDataArray ‑ test_encoding
xarray.tests.test_dataarray.TestDataArray ‑ test_equals_and_identical
xarray.tests.test_dataarray.TestDataArray ‑ test_equals_failures
xarray.tests.test_dataarray.TestDataArray ‑ test_expand_dims
xarray.tests.test_dataarray.TestDataArray ‑ test_expand_dims_error
xarray.tests.test_dataarray.TestDataArray ‑ test_expand_dims_with_greater_dim_size
xarray.tests.test_dataarray.TestDataArray ‑ test_expand_dims_with_scalar_coordinate
xarray.tests.test_dataarray.TestDataArray ‑ test_fillna
xarray.tests.test_dataarray.TestDataArray ‑ test_from_multiindex_series_sparse
xarray.tests.test_dataarray.TestDataArray ‑ test_from_series_multiindex
xarray.tests.test_dataarray.TestDataArray ‑ test_from_series_sparse
xarray.tests.test_dataarray.TestDataArray ‑ test_full_like
xarray.tests.test_dataarray.TestDataArray ‑ test_get_index
xarray.tests.test_dataarray.TestDataArray ‑ test_get_index_size_zero
xarray.tests.test_dataarray.TestDataArray ‑ test_getitem
xarray.tests.test_dataarray.TestDataArray ‑ test_getitem_coords
xarray.tests.test_dataarray.TestDataArray ‑ test_getitem_dataarray
xarray.tests.test_dataarray.TestDataArray ‑ test_getitem_dict
xarray.tests.test_dataarray.TestDataArray ‑ test_getitem_empty_index
xarray.tests.test_dataarray.TestDataArray ‑ test_head
xarray.tests.test_dataarray.TestDataArray ‑ test_index_math
xarray.tests.test_dataarray.TestDataArray ‑ test_indexes
xarray.tests.test_dataarray.TestDataArray ‑ test_init_value
xarray.tests.test_dataarray.TestDataArray ‑ test_inplace_math_automatic_alignment
xarray.tests.test_dataarray.TestDataArray ‑ test_inplace_math_basics
xarray.tests.test_dataarray.TestDataArray ‑ test_inplace_math_error
xarray.tests.test_dataarray.TestDataArray ‑ test_is_null
xarray.tests.test_dataarray.TestDataArray ‑ test_isel
xarray.tests.test_dataarray.TestDataArray ‑ test_isel_drop
xarray.tests.test_dataarray.TestDataArray ‑ test_isel_fancy
xarray.tests.test_dataarray.TestDataArray ‑ test_isel_types
xarray.tests.test_dataarray.TestDataArray ‑ test_loc
xarray.tests.test_dataarray.TestDataArray ‑ test_loc_assign
xarray.tests.test_dataarray.TestDataArray ‑ test_loc_assign_dataarray
xarray.tests.test_dataarray.TestDataArray ‑ test_loc_datetime64_value
xarray.tests.test_dataarray.TestDataArray ‑ test_loc_dim_name_collision_with_sel_params
xarray.tests.test_dataarray.TestDataArray ‑ test_loc_single_boolean
xarray.tests.test_dataarray.TestDataArray ‑ test_math
xarray.tests.test_dataarray.TestDataArray ‑ test_math_automatic_alignment
xarray.tests.test_dataarray.TestDataArray ‑ test_math_name
xarray.tests.test_dataarray.TestDataArray ‑ test_math_with_coords
xarray.tests.test_dataarray.TestDataArray ‑ test_matmul
xarray.tests.test_dataarray.TestDataArray ‑ test_matmul_align_coords
xarray.tests.test_dataarray.TestDataArray ‑ test_name
xarray.tests.test_dataarray.TestDataArray ‑ test_nbytes_does_not_load_data
xarray.tests.test_dataarray.TestDataArray ‑ test_non_overlapping_dataarrays_return_empty_result
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_constant
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_coords
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_keep_attrs[False]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_keep_attrs[True]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_keep_attrs[default]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_linear_ramp[3]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_linear_ramp[None]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_linear_ramp[end_values2]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_linear_ramp[end_values3]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_reflect[None-reflect]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_reflect[None-symmetric]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_reflect[even-reflect]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_reflect[even-symmetric]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_reflect[odd-reflect]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_reflect[odd-symmetric]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_stat_length[3-maximum]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_stat_length[3-mean]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_stat_length[3-median]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_stat_length[3-minimum]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_stat_length[None-maximum]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_stat_length[None-mean]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_stat_length[None-median]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_stat_length[None-minimum]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_stat_length[stat_length2-maximum]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_stat_length[stat_length2-mean]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_stat_length[stat_length2-median]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_stat_length[stat_length2-minimum]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_stat_length[stat_length3-maximum]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_stat_length[stat_length3-mean]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_stat_length[stat_length3-median]
xarray.tests.test_dataarray.TestDataArray ‑ test_pad_stat_length[stat_length3-minimum]
xarray.tests.test_dataarray.TestDataArray ‑ test_pickle
xarray.tests.test_dataarray.TestDataArray ‑ test_polyfit[False-False]
xarray.tests.test_dataarray.TestDataArray ‑ test_polyfit[False-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_polyfit[True-False]
xarray.tests.test_dataarray.TestDataArray ‑ test_polyfit[True-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_propagate_attrs[<lambda>0]
xarray.tests.test_dataarray.TestDataArray ‑ test_propagate_attrs[<lambda>1]
xarray.tests.test_dataarray.TestDataArray ‑ test_propagate_attrs[abs]
xarray.tests.test_dataarray.TestDataArray ‑ test_propagate_attrs[absolute]
xarray.tests.test_dataarray.TestDataArray ‑ test_properties
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[0-x-0.25-False]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[0-x-0.25-None]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[0-x-0.25-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[0-x-q1-False]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[0-x-q1-None]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[0-x-q1-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[0-x-q2-False]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[0-x-q2-None]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[0-x-q2-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[None-None-0.25-False]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[None-None-0.25-None]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[None-None-0.25-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[None-None-q1-False]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[None-None-q1-None]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[None-None-q1-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[None-None-q2-False]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[None-None-q2-None]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[None-None-q2-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[axis2-dim2-0.25-False]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[axis2-dim2-0.25-None]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[axis2-dim2-0.25-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[axis2-dim2-q1-False]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[axis2-dim2-q1-None]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[axis2-dim2-q1-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[axis2-dim2-q2-False]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[axis2-dim2-q2-None]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[axis2-dim2-q2-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[axis3-dim3-0.25-False]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[axis3-dim3-0.25-None]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[axis3-dim3-0.25-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[axis3-dim3-q1-False]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[axis3-dim3-q1-None]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[axis3-dim3-q1-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[axis3-dim3-q2-False]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[axis3-dim3-q2-None]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile[axis3-dim3-q2-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile_interpolation_deprecated[lower]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile_interpolation_deprecated[midpoint]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile_method[lower]
xarray.tests.test_dataarray.TestDataArray ‑ test_quantile_method[midpoint]
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-None-pandas]
xarray.tests.test_dataarray.TestDataArray ‑ test_query[numpy-None-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_query[numpy-python-pandas]
xarray.tests.test_dataarray.TestDataArray ‑ test_query[numpy-python-python]
xarray.tests.test_dataarray.TestDataArray ‑ test_rank
xarray.tests.test_dataarray.TestDataArray ‑ test_real_and_imag
xarray.tests.test_dataarray.TestDataArray ‑ test_reduce
xarray.tests.test_dataarray.TestDataArray ‑ test_reduce_dtype
xarray.tests.test_dataarray.TestDataArray ‑ test_reduce_keep_attrs
xarray.tests.test_dataarray.TestDataArray ‑ test_reduce_keepdims
xarray.tests.test_dataarray.TestDataArray ‑ test_reduce_keepdims_bottleneck
xarray.tests.test_dataarray.TestDataArray ‑ test_reduce_out
xarray.tests.test_dataarray.TestDataArray ‑ test_reindex_fill_value[2.0]
xarray.tests.test_dataarray.TestDataArray ‑ test_reindex_fill_value[2]
xarray.tests.test_dataarray.TestDataArray ‑ test_reindex_fill_value[fill_value0]
xarray.tests.test_dataarray.TestDataArray ‑ test_reindex_fill_value[fill_value3]
xarray.tests.test_dataarray.TestDataArray ‑ test_reindex_like
xarray.tests.test_dataarray.TestDataArray ‑ test_reindex_like_no_index
xarray.tests.test_dataarray.TestDataArray ‑ test_reindex_method
xarray.tests.test_dataarray.TestDataArray ‑ test_reindex_regressions
xarray.tests.test_dataarray.TestDataArray ‑ test_reindex_str_dtype[bytes]
xarray.tests.test_dataarray.TestDataArray ‑ test_reindex_str_dtype[str]
xarray.tests.test_dataarray.TestDataArray ‑ test_rename
xarray.tests.test_dataarray.TestDataArray ‑ test_rename_dimension_coord_warnings
xarray.tests.test_dataarray.TestDataArray ‑ test_reorder_levels
xarray.tests.test_dataarray.TestDataArray ‑ test_repr
xarray.tests.test_dataarray.TestDataArray ‑ test_repr_multiindex
xarray.tests.test_dataarray.TestDataArray ‑ test_repr_multiindex_long
xarray.tests.test_dataarray.TestDataArray ‑ test_reset_coords
xarray.tests.test_dataarray.TestDataArray ‑ test_reset_encoding
xarray.tests.test_dataarray.TestDataArray ‑ test_reset_index
xarray.tests.test_dataarray.TestDataArray ‑ test_reset_index_keep_attrs
xarray.tests.test_dataarray.TestDataArray ‑ test_roll_coords
xarray.tests.test_dataarray.TestDataArray ‑ test_roll_no_coords
xarray.tests.test_dataarray.TestDataArray ‑ test_sel
xarray.tests.test_dataarray.TestDataArray ‑ test_sel_dataarray
xarray.tests.test_dataarray.TestDataArray ‑ test_sel_dataarray_datetime_slice
xarray.tests.test_dataarray.TestDataArray ‑ test_sel_drop
xarray.tests.test_dataarray.TestDataArray ‑ test_sel_float16
xarray.tests.test_dataarray.TestDataArray ‑ test_sel_float[float32]
xarray.tests.test_dataarray.TestDataArray ‑ test_sel_float[float64]
xarray.tests.test_dataarray.TestDataArray ‑ test_sel_float[scalar]
xarray.tests.test_dataarray.TestDataArray ‑ test_sel_float_multiindex
xarray.tests.test_dataarray.TestDataArray ‑ test_sel_invalid_slice
xarray.tests.test_dataarray.TestDataArray ‑ test_sel_method
xarray.tests.test_dataarray.TestDataArray ‑ test_sel_no_index
xarray.tests.test_dataarray.TestDataArray ‑ test_selection_multiindex
xarray.tests.test_dataarray.TestDataArray ‑ test_selection_multiindex_from_level
xarray.tests.test_dataarray.TestDataArray ‑ test_selection_multiindex_remove_unused
xarray.tests.test_dataarray.TestDataArray ‑ test_series_categorical_index
xarray.tests.test_dataarray.TestDataArray ‑ test_set_coords_multiindex_level
xarray.tests.test_dataarray.TestDataArray ‑ test_set_coords_update_index
xarray.tests.test_dataarray.TestDataArray ‑ test_set_index
xarray.tests.test_dataarray.TestDataArray ‑ test_set_xindex
xarray.tests.test_dataarray.TestDataArray ‑ test_setattr_raises
xarray.tests.test_dataarray.TestDataArray ‑ test_setitem
xarray.tests.test_dataarray.TestDataArray ‑ test_setitem_dataarray
xarray.tests.test_dataarray.TestDataArray ‑ test_setitem_fancy
xarray.tests.test_dataarray.TestDataArray ‑ test_shift[2-int--5]
xarray.tests.test_dataarray.TestDataArray ‑ test_shift[2-int-0]
xarray.tests.test_dataarray.TestDataArray ‑ test_shift[2-int-1]
xarray.tests.test_dataarray.TestDataArray ‑ test_shift[2-int-2]
xarray.tests.test_dataarray.TestDataArray ‑ test_shift[fill_value1-float--5]
xarray.tests.test_dataarray.TestDataArray ‑ test_shift[fill_value1-float-0]
xarray.tests.test_dataarray.TestDataArray ‑ test_shift[fill_value1-float-1]
xarray.tests.test_dataarray.TestDataArray ‑ test_shift[fill_value1-float-2]
xarray.tests.test_dataarray.TestDataArray ‑ test_sizes
xarray.tests.test_dataarray.TestDataArray ‑ test_sortby
xarray.tests.test_dataarray.TestDataArray ‑ test_squeeze
xarray.tests.test_dataarray.TestDataArray ‑ test_squeeze_drop
xarray.tests.test_dataarray.TestDataArray ‑ test_stack_nonunique_consistency[1-dask]
xarray.tests.test_dataarray.TestDataArray ‑ test_stack_nonunique_consistency[1-numpy]
xarray.tests.test_dataarray.TestDataArray ‑ test_stack_unstack
xarray.tests.test_dataarray.TestDataArray ‑ test_stack_unstack_decreasing_coordinate
xarray.tests.test_dataarray.TestDataArray ‑ test_struct_array_dims
xarray.tests.test_dataarray.TestDataArray ‑ test_swap_dims
xarray.tests.test_dataarray.TestDataArray ‑ test_tail
xarray.tests.test_dataarray.TestDataArray ‑ test_thin
xarray.tests.test_dataarray.TestDataArray ‑ test_to_and_from_cdms2_classic
xarray.tests.test_dataarray.TestDataArray ‑ test_to_and_from_cdms2_sgrid
xarray.tests.test_dataarray.TestDataArray ‑ test_to_and_from_cdms2_ugrid
xarray.tests.test_dataarray.TestDataArray ‑ test_to_and_from_dict[False-True-False]
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-False]
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-False]
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-False]
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-False]
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-False]
xarray.tests.test_dataarray.TestDataArray ‑ test_to_and_from_dict[True-list-True]
xarray.tests.test_dataarray.TestDataArray ‑ test_to_and_from_dict_with_nan_nat
xarray.tests.test_dataarray.TestDataArray ‑ test_to_and_from_dict_with_time_dim
xarray.tests.test_dataarray.TestDataArray ‑ test_to_and_from_empty_series
xarray.tests.test_dataarray.TestDataArray ‑ test_to_and_from_series
xarray.tests.test_dataarray.TestDataArray ‑ test_to_dask_dataframe
xarray.tests.test_dataarray.TestDataArray ‑ test_to_dataframe
xarray.tests.test_dataarray.TestDataArray ‑ test_to_dataframe_0length
xarray.tests.test_dataarray.TestDataArray ‑ test_to_dataframe_multiindex
xarray.tests.test_dataarray.TestDataArray ‑ test_to_dataset_retains_keys
xarray.tests.test_dataarray.TestDataArray ‑ test_to_dataset_split
xarray.tests.test_dataarray.TestDataArray ‑ test_to_dataset_whole
xarray.tests.test_dataarray.TestDataArray ‑ test_to_dict_with_numpy_attrs
xarray.tests.test_dataarray.TestDataArray ‑ test_to_masked_array
xarray.tests.test_dataarray.TestDataArray ‑ test_to_pandas
xarray.tests.test_dataarray.TestDataArray ‑ test_to_pandas_name_matches_coordinate
xarray.tests.test_dataarray.TestDataArray ‑ test_to_unstacked_dataset_raises_value_error
xarray.tests.test_dataarray.TestDataArray ‑ test_transpose
xarray.tests.test_dataarray.TestDataArray ‑ test_unstack_pandas_consistency
xarray.tests.test_dataarray.TestDataArray ‑ test_virtual_default_coords
xarray.tests.test_dataarray.TestDataArray ‑ test_virtual_time_components
xarray.tests.test_dataarray.TestDataArray ‑ test_where
xarray.tests.test_dataarray.TestDataArray ‑ test_where_lambda
xarray.tests.test_dataarray.TestDataArray ‑ test_where_string
xarray.tests.test_dataarray.TestDropDuplicates ‑ test_drop_duplicates_1d[False]
xarray.tests.test_dataarray.TestDropDuplicates ‑ test_drop_duplicates_1d[first]
xarray.tests.test_dataarray.TestDropDuplicates ‑ test_drop_duplicates_1d[last]
xarray.tests.test_dataarray.TestDropDuplicates ‑ test_drop_duplicates_2d
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_numpy
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_argmax[allnan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmax[datetime]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmax[float]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmax[int]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmax[nan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmax[obj]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmax_dim[allnan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmax_dim[datetime]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmax_dim[float]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmax_dim[int]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmax_dim[nan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmax_dim[obj]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmin[allnan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmin[datetime]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmin[float]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmin[int]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmin[nan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmin[obj]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmin_dim[allnan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmin_dim[datetime]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmin_dim[float]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmin_dim[int]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmin_dim[nan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_argmin_dim[obj]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmax[False-allnan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmax[False-datetime]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmax[False-float]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmax[False-int]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmax[False-nan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmax[False-obj]
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[False-allnan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmin[False-datetime]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmin[False-float]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmin[False-int]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmin[False-nan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_idxmin[False-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.TestReduce1D ‑ test_max[allnan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_max[datetime]
xarray.tests.test_dataarray.TestReduce1D ‑ test_max[float]
xarray.tests.test_dataarray.TestReduce1D ‑ test_max[int]
xarray.tests.test_dataarray.TestReduce1D ‑ test_max[nan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_max[obj]
xarray.tests.test_dataarray.TestReduce1D ‑ test_min[allnan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_min[datetime]
xarray.tests.test_dataarray.TestReduce1D ‑ test_min[float]
xarray.tests.test_dataarray.TestReduce1D ‑ test_min[int]
xarray.tests.test_dataarray.TestReduce1D ‑ test_min[nan]
xarray.tests.test_dataarray.TestReduce1D ‑ test_min[obj]
xarray.tests.test_dataarray.TestReduce2D ‑ test_argmax[datetime]
xarray.tests.test_dataarray.TestReduce2D ‑ test_argmax[int]
xarray.tests.test_dataarray.TestReduce2D ‑ test_argmax[nan]
xarray.tests.test_dataarray.TestReduce2D ‑ test_argmax[obj]
xarray.tests.test_dataarray.TestReduce2D ‑ test_argmax_dim[datetime]
xarray.tests.test_dataarray.TestReduce2D ‑ test_argmax_dim[int]
xarray.tests.test_dataarray.TestReduce2D ‑ test_argmax_dim[nan]
xarray.tests.test_dataarray.TestReduce2D ‑ test_argmax_dim[obj]
xarray.tests.test_dataarray.TestReduce2D ‑ test_argmin[datetime]
xarray.tests.test_dataarray.TestReduce2D ‑ test_argmin[int]
xarray.tests.test_dataarray.TestReduce2D ‑ test_argmin[nan]
xarray.tests.test_dataarray.TestReduce2D ‑ test_argmin[obj]
xarray.tests.test_dataarray.TestReduce2D ‑ test_argmin_dim[datetime]
xarray.tests.test_dataarray.TestReduce2D ‑ test_argmin_dim[int]
xarray.tests.test_dataarray.TestReduce2D ‑ test_argmin_dim[nan]
xarray.tests.test_dataarray.TestReduce2D ‑ test_argmin_dim[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_idxmax[nodask-datetime]
xarray.tests.test_dataarray.TestReduce2D ‑ test_idxmax[nodask-int]
xarray.tests.test_dataarray.TestReduce2D ‑ test_idxmax[nodask-nan]
xarray.tests.test_dataarray.TestReduce2D ‑ test_idxmax[nodask-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.TestReduce2D ‑ test_idxmin[nodask-datetime]
xarray.tests.test_dataarray.TestReduce2D ‑ test_idxmin[nodask-int]
xarray.tests.test_dataarray.TestReduce2D ‑ test_idxmin[nodask-nan]
xarray.tests.test_dataarray.TestReduce2D ‑ test_idxmin[nodask-obj]
xarray.tests.test_dataarray.TestReduce2D ‑ test_max[datetime]
xarray.tests.test_dataarray.TestReduce2D ‑ test_max[int]
xarray.tests.test_dataarray.TestReduce2D ‑ test_max[nan]
xarray.tests.test_dataarray.TestReduce2D ‑ test_max[obj]
xarray.tests.test_dataarray.TestReduce2D ‑ test_min[datetime]
xarray.tests.test_dataarray.TestReduce2D ‑ test_min[int]
xarray.tests.test_dataarray.TestReduce2D ‑ test_min[nan]
xarray.tests.test_dataarray.TestReduce2D ‑ test_min[obj]
xarray.tests.test_dataarray.TestReduce3D ‑ test_argmax_dim[datetime]
xarray.tests.test_dataarray.TestReduce3D ‑ test_argmax_dim[int]
xarray.tests.test_dataarray.TestReduce3D ‑ test_argmax_dim[nan]
xarray.tests.test_dataarray.TestReduce3D ‑ test_argmax_dim[obj]
xarray.tests.test_dataarray.TestReduce3D ‑ test_argmin_dim[datetime]
xarray.tests.test_dataarray.TestReduce3D ‑ test_argmin_dim[int]
xarray.tests.test_dataarray.TestReduce3D ‑ test_argmin_dim[nan]
xarray.tests.test_dataarray.TestReduce3D ‑ test_argmin_dim[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_dataarray.TestStackEllipsis ‑ test_error_on_ellipsis_without_list
xarray.tests.test_dataarray.TestStackEllipsis ‑ test_result_as_expected
xarray.tests.test_dataset ‑ test_clip[1-dask]
xarray.tests.test_dataset ‑ test_clip[1-numpy]
xarray.tests.test_dataset ‑ test_constructor_raises_with_invalid_coords[unaligned_coords0]
xarray.tests.test_dataset ‑ test_cumulative_integrate[False]
xarray.tests.test_dataset ‑ test_cumulative_integrate[True]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords0-unaligned_coords0]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords0-unaligned_coords1]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords0-unaligned_coords2]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords0-unaligned_coords3]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords0-unaligned_coords4]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords0-unaligned_coords5]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords0-unaligned_coords6]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords0-unaligned_coords7]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords0-unaligned_coords8]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords0-unaligned_coords9]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords1-unaligned_coords0]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords1-unaligned_coords1]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords1-unaligned_coords2]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords1-unaligned_coords3]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords1-unaligned_coords4]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords1-unaligned_coords5]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords1-unaligned_coords6]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords1-unaligned_coords7]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords1-unaligned_coords8]
xarray.tests.test_dataset ‑ test_dataset_constructor_aligns_to_explicit_coords[coords1-unaligned_coords9]
xarray.tests.test_dataset ‑ test_deepcopy_obj_array
xarray.tests.test_dataset ‑ test_deepcopy_recursive
xarray.tests.test_dataset ‑ test_differentiate[1-False]
xarray.tests.test_dataset ‑ test_differentiate[1-True]
xarray.tests.test_dataset ‑ test_differentiate[2-False]
xarray.tests.test_dataset ‑ test_differentiate[2-True]
xarray.tests.test_dataset ‑ test_differentiate_cftime[False]
xarray.tests.test_dataset ‑ test_differentiate_cftime[True]
xarray.tests.test_dataset ‑ test_differentiate_datetime[False]
xarray.tests.test_dataset ‑ test_differentiate_datetime[True]
xarray.tests.test_dataset ‑ test_dir_expected_attrs[dask-3]
xarray.tests.test_dataset ‑ test_dir_expected_attrs[numpy-3]
xarray.tests.test_dataset ‑ test_dir_non_string[1-dask]
xarray.tests.test_dataset ‑ test_dir_non_string[1-numpy]
xarray.tests.test_dataset ‑ test_dir_unicode[1-dask]
xarray.tests.test_dataset ‑ test_dir_unicode[1-numpy]
xarray.tests.test_dataset ‑ test_error_message_on_set_supplied
xarray.tests.test_dataset ‑ test_integrate[False]
xarray.tests.test_dataset ‑ test_integrate[True]
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_isin[numpy-test_elements0]
xarray.tests.test_dataset ‑ test_isin[numpy-test_elements1]
xarray.tests.test_dataset ‑ test_isin[numpy-test_elements2]
xarray.tests.test_dataset ‑ test_isin_dataset
xarray.tests.test_dataset ‑ test_no_dict
xarray.tests.test_dataset ‑ test_raise_no_warning_assert_close[dask-2]
xarray.tests.test_dataset ‑ test_raise_no_warning_assert_close[numpy-2]
xarray.tests.test_dataset ‑ test_raise_no_warning_for_nan_in_binary_ops
xarray.tests.test_dataset ‑ test_string_keys_typing
xarray.tests.test_dataset ‑ test_subclass_slots
xarray.tests.test_dataset ‑ test_transpose_error
xarray.tests.test_dataset ‑ test_trapz_datetime[cftime-False]
xarray.tests.test_dataset ‑ test_trapz_datetime[cftime-True]
xarray.tests.test_dataset ‑ test_trapz_datetime[np-False]
xarray.tests.test_dataset ‑ test_trapz_datetime[np-True]
xarray.tests.test_dataset ‑ test_weakref
xarray.tests.test_dataset.TestDataset ‑ test_align
xarray.tests.test_dataset.TestDataset ‑ test_align_exact
xarray.tests.test_dataset.TestDataset ‑ test_align_exclude
xarray.tests.test_dataset.TestDataset ‑ test_align_fill_value[2.0]
xarray.tests.test_dataset.TestDataset ‑ test_align_fill_value[2]
xarray.tests.test_dataset.TestDataset ‑ test_align_fill_value[fill_value0]
xarray.tests.test_dataset.TestDataset ‑ test_align_fill_value[fill_value3]
xarray.tests.test_dataset.TestDataset ‑ test_align_index_var_attrs[left]
xarray.tests.test_dataset.TestDataset ‑ test_align_index_var_attrs[override]
xarray.tests.test_dataset.TestDataset ‑ test_align_indexes
xarray.tests.test_dataset.TestDataset ‑ test_align_nocopy
xarray.tests.test_dataset.TestDataset ‑ test_align_non_unique
xarray.tests.test_dataset.TestDataset ‑ test_align_override
xarray.tests.test_dataset.TestDataset ‑ test_align_str_dtype
xarray.tests.test_dataset.TestDataset ‑ test_apply_pending_deprecated_map
xarray.tests.test_dataset.TestDataset ‑ test_asarray
xarray.tests.test_dataset.TestDataset ‑ test_assign
xarray.tests.test_dataset.TestDataset ‑ test_assign_all_multiindex_coords
xarray.tests.test_dataset.TestDataset ‑ test_assign_attrs
xarray.tests.test_dataset.TestDataset ‑ test_assign_coords
xarray.tests.test_dataset.TestDataset ‑ test_assign_coords_custom_index_side_effect
xarray.tests.test_dataset.TestDataset ‑ test_assign_coords_existing_multiindex
xarray.tests.test_dataset.TestDataset ‑ test_assign_multiindex_level
xarray.tests.test_dataset.TestDataset ‑ test_astype_attrs
xarray.tests.test_dataset.TestDataset ‑ test_attr_access
xarray.tests.test_dataset.TestDataset ‑ test_attribute_access
xarray.tests.test_dataset.TestDataset ‑ test_attrs
xarray.tests.test_dataset.TestDataset ‑ test_binary_op_join_setting
xarray.tests.test_dataset.TestDataset ‑ test_binary_op_propagate_indexes
xarray.tests.test_dataset.TestDataset ‑ test_binary_ops_keep_attrs[False]
xarray.tests.test_dataset.TestDataset ‑ test_binary_ops_keep_attrs[True]
xarray.tests.test_dataset.TestDataset ‑ test_broadcast
xarray.tests.test_dataset.TestDataset ‑ test_broadcast_equals
xarray.tests.test_dataset.TestDataset ‑ test_broadcast_exclude
xarray.tests.test_dataset.TestDataset ‑ test_broadcast_like
xarray.tests.test_dataset.TestDataset ‑ test_broadcast_misaligned
xarray.tests.test_dataset.TestDataset ‑ test_broadcast_multi_index
xarray.tests.test_dataset.TestDataset ‑ test_broadcast_nocopy
xarray.tests.test_dataset.TestDataset ‑ test_categorical_index
xarray.tests.test_dataset.TestDataset ‑ test_categorical_multiindex
xarray.tests.test_dataset.TestDataset ‑ test_categorical_reindex
xarray.tests.test_dataset.TestDataset ‑ test_chunk
xarray.tests.test_dataset.TestDataset ‑ test_chunks_does_not_load_data
xarray.tests.test_dataset.TestDataset ‑ test_combine_first
xarray.tests.test_dataset.TestDataset ‑ test_constructor
xarray.tests.test_dataset.TestDataset ‑ test_constructor_0d
xarray.tests.test_dataset.TestDataset ‑ test_constructor_1d
xarray.tests.test_dataset.TestDataset ‑ test_constructor_auto_align
xarray.tests.test_dataset.TestDataset ‑ test_constructor_compat
xarray.tests.test_dataset.TestDataset ‑ test_constructor_invalid_dims
xarray.tests.test_dataset.TestDataset ‑ test_constructor_pandas_sequence
xarray.tests.test_dataset.TestDataset ‑ test_constructor_pandas_single
xarray.tests.test_dataset.TestDataset ‑ test_constructor_with_coords
xarray.tests.test_dataset.TestDataset ‑ test_convert_dataframe_with_many_types_and_multiindex
xarray.tests.test_dataset.TestDataset ‑ test_coords_merge
xarray.tests.test_dataset.TestDataset ‑ test_coords_merge_mismatched_shape
xarray.tests.test_dataset.TestDataset ‑ test_coords_modify
xarray.tests.test_dataset.TestDataset ‑ test_coords_properties
xarray.tests.test_dataset.TestDataset ‑ test_coords_set
xarray.tests.test_dataset.TestDataset ‑ test_coords_setitem_multiindex
xarray.tests.test_dataset.TestDataset ‑ test_coords_setitem_with_new_dimension
xarray.tests.test_dataset.TestDataset ‑ test_coords_to_dataset
xarray.tests.test_dataset.TestDataset ‑ test_copy
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_copy_with_data
xarray.tests.test_dataset.TestDataset ‑ test_copy_with_data_errors
xarray.tests.test_dataset.TestDataset ‑ test_count
xarray.tests.test_dataset.TestDataset ‑ test_dask_is_lazy
xarray.tests.test_dataset.TestDataset ‑ test_data_vars_properties
xarray.tests.test_dataset.TestDataset ‑ test_dataset_array_math
xarray.tests.test_dataset.TestDataset ‑ test_dataset_dataset_math
xarray.tests.test_dataset.TestDataset ‑ test_dataset_diff_exception_label_str
xarray.tests.test_dataset.TestDataset ‑ test_dataset_diff_exception_n_neg
xarray.tests.test_dataset.TestDataset ‑ test_dataset_diff_n1
xarray.tests.test_dataset.TestDataset ‑ test_dataset_diff_n1_label
xarray.tests.test_dataset.TestDataset ‑ test_dataset_diff_n1_simple
xarray.tests.test_dataset.TestDataset ‑ test_dataset_diff_n2
xarray.tests.test_dataset.TestDataset ‑ test_dataset_ellipsis_transpose_different_ordered_vars
xarray.tests.test_dataset.TestDataset ‑ test_dataset_math_auto_align
xarray.tests.test_dataset.TestDataset ‑ test_dataset_math_errors
xarray.tests.test_dataset.TestDataset ‑ test_dataset_number_math
xarray.tests.test_dataset.TestDataset ‑ test_dataset_retains_period_index_on_transpose
xarray.tests.test_dataset.TestDataset ‑ test_dataset_transpose
xarray.tests.test_dataset.TestDataset ‑ test_delitem
xarray.tests.test_dataset.TestDataset ‑ test_delitem_multiindex_level
xarray.tests.test_dataset.TestDataset ‑ test_drop_dims
xarray.tests.test_dataset.TestDataset ‑ test_drop_index_labels
xarray.tests.test_dataset.TestDataset ‑ test_drop_indexes
xarray.tests.test_dataset.TestDataset ‑ test_drop_labels_by_keyword
xarray.tests.test_dataset.TestDataset ‑ test_drop_labels_by_position
xarray.tests.test_dataset.TestDataset ‑ test_drop_multiindex_level
xarray.tests.test_dataset.TestDataset ‑ test_drop_variables
xarray.tests.test_dataset.TestDataset ‑ test_dropna
xarray.tests.test_dataset.TestDataset ‑ test_equals_and_identical
xarray.tests.test_dataset.TestDataset ‑ test_equals_failures
xarray.tests.test_dataset.TestDataset ‑ test_expand_dims_coords
xarray.tests.test_dataset.TestDataset ‑ test_expand_dims_error
xarray.tests.test_dataset.TestDataset ‑ test_expand_dims_existing_scalar_coord
xarray.tests.test_dataset.TestDataset ‑ test_expand_dims_int
xarray.tests.test_dataset.TestDataset ‑ test_expand_dims_kwargs_python36plus
xarray.tests.test_dataset.TestDataset ‑ test_expand_dims_mixed_int_and_coords
xarray.tests.test_dataset.TestDataset ‑ test_fillna
xarray.tests.test_dataset.TestDataset ‑ test_filter_by_attrs
xarray.tests.test_dataset.TestDataset ‑ test_from_dataframe_categorical
xarray.tests.test_dataset.TestDataset ‑ test_from_dataframe_multiindex
xarray.tests.test_dataset.TestDataset ‑ test_from_dataframe_non_unique_columns
xarray.tests.test_dataset.TestDataset ‑ test_from_dataframe_sparse
xarray.tests.test_dataset.TestDataset ‑ test_from_dataframe_unsorted_levels
xarray.tests.test_dataset.TestDataset ‑ test_full_like
xarray.tests.test_dataset.TestDataset ‑ test_get_index
xarray.tests.test_dataset.TestDataset ‑ test_getitem
xarray.tests.test_dataset.TestDataset ‑ test_getitem_hashable
xarray.tests.test_dataset.TestDataset ‑ test_getitem_multiple_dtype
xarray.tests.test_dataset.TestDataset ‑ test_head
xarray.tests.test_dataset.TestDataset ‑ test_info
xarray.tests.test_dataset.TestDataset ‑ test_ipython_key_completion
xarray.tests.test_dataset.TestDataset ‑ test_isel
xarray.tests.test_dataset.TestDataset ‑ test_isel_dataarray
xarray.tests.test_dataset.TestDataset ‑ test_isel_drop
xarray.tests.test_dataset.TestDataset ‑ test_isel_expand_dims_roundtrip
xarray.tests.test_dataset.TestDataset ‑ test_isel_fancy
xarray.tests.test_dataset.TestDataset ‑ test_isel_fancy_convert_index_variable
xarray.tests.test_dataset.TestDataset ‑ test_lazy_load
xarray.tests.test_dataset.TestDataset ‑ test_lazy_load_duck_array
xarray.tests.test_dataset.TestDataset ‑ test_loc
xarray.tests.test_dataset.TestDataset ‑ test_map
xarray.tests.test_dataset.TestDataset ‑ test_mean_uint_dtype
xarray.tests.test_dataset.TestDataset ‑ test_merge_multiindex_level
xarray.tests.test_dataset.TestDataset ‑ test_modify_inplace
xarray.tests.test_dataset.TestDataset ‑ test_pad
xarray.tests.test_dataset.TestDataset ‑ test_pad_keep_attrs[False]
xarray.tests.test_dataset.TestDataset ‑ test_pad_keep_attrs[True]
xarray.tests.test_dataset.TestDataset ‑ test_pad_keep_attrs[default]
xarray.tests.test_dataset.TestDataset ‑ test_pickle
xarray.tests.test_dataset.TestDataset ‑ test_polyfit_output
xarray.tests.test_dataset.TestDataset ‑ test_polyfit_warnings
xarray.tests.test_dataset.TestDataset ‑ test_propagate_attrs[<lambda>0]
xarray.tests.test_dataset.TestDataset ‑ test_propagate_attrs[<lambda>1]
xarray.tests.test_dataset.TestDataset ‑ test_propagate_attrs[abs]
xarray.tests.test_dataset.TestDataset ‑ test_propagate_attrs[absolute]
xarray.tests.test_dataset.TestDataset ‑ test_properties
xarray.tests.test_dataset.TestDataset ‑ test_quantile[0.25-False]
xarray.tests.test_dataset.TestDataset ‑ test_quantile[0.25-None]
xarray.tests.test_dataset.TestDataset ‑ test_quantile[0.25-True]
xarray.tests.test_dataset.TestDataset ‑ test_quantile[q1-False]
xarray.tests.test_dataset.TestDataset ‑ test_quantile[q1-None]
xarray.tests.test_dataset.TestDataset ‑ test_quantile[q1-True]
xarray.tests.test_dataset.TestDataset ‑ test_quantile[q2-False]
xarray.tests.test_dataset.TestDataset ‑ test_quantile[q2-None]
xarray.tests.test_dataset.TestDataset ‑ test_quantile[q2-True]
xarray.tests.test_dataset.TestDataset ‑ test_quantile_interpolation_deprecated[lower]
xarray.tests.test_dataset.TestDataset ‑ test_quantile_interpolation_deprecated[midpoint]
xarray.tests.test_dataset.TestDataset ‑ test_quantile_method[lower]
xarray.tests.test_dataset.TestDataset ‑ test_quantile_method[midpoint]
xarray.tests.test_dataset.TestDataset ‑ test_quantile_skipna[False]
xarray.tests.test_dataset.TestDataset ‑ test_quantile_skipna[True]
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-None-pandas]
xarray.tests.test_dataset.TestDataset ‑ test_query[numpy-None-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_query[numpy-python-pandas]
xarray.tests.test_dataset.TestDataset ‑ test_query[numpy-python-python]
xarray.tests.test_dataset.TestDataset ‑ test_rank
xarray.tests.test_dataset.TestDataset ‑ test_rank_use_bottleneck
xarray.tests.test_dataset.TestDataset ‑ test_real_and_imag
xarray.tests.test_dataset.TestDataset ‑ test_reduce
xarray.tests.test_dataset.TestDataset ‑ test_reduce_argmin
xarray.tests.test_dataset.TestDataset ‑ test_reduce_bad_dim
xarray.tests.test_dataset.TestDataset ‑ test_reduce_coords
xarray.tests.test_dataset.TestDataset ‑ test_reduce_cumsum
xarray.tests.test_dataset.TestDataset ‑ test_reduce_cumsum_test_dims[cumprod-dim1-expected0]
xarray.tests.test_dataset.TestDataset ‑ test_reduce_cumsum_test_dims[cumprod-dim2-expected1]
xarray.tests.test_dataset.TestDataset ‑ test_reduce_cumsum_test_dims[cumprod-dim3-expected2]
xarray.tests.test_dataset.TestDataset ‑ test_reduce_cumsum_test_dims[cumprod-time-expected3]
xarray.tests.test_dataset.TestDataset ‑ test_reduce_cumsum_test_dims[cumsum-dim1-expected0]
xarray.tests.test_dataset.TestDataset ‑ test_reduce_cumsum_test_dims[cumsum-dim2-expected1]
xarray.tests.test_dataset.TestDataset ‑ test_reduce_cumsum_test_dims[cumsum-dim3-expected2]
xarray.tests.test_dataset.TestDataset ‑ test_reduce_cumsum_test_dims[cumsum-time-expected3]
xarray.tests.test_dataset.TestDataset ‑ test_reduce_dtypes
xarray.tests.test_dataset.TestDataset ‑ test_reduce_keep_attrs
xarray.tests.test_dataset.TestDataset ‑ test_reduce_keepdims
xarray.tests.test_dataset.TestDataset ‑ test_reduce_no_axis
xarray.tests.test_dataset.TestDataset ‑ test_reduce_non_numeric
xarray.tests.test_dataset.TestDataset ‑ test_reduce_only_one_axis
xarray.tests.test_dataset.TestDataset ‑ test_reduce_scalars
xarray.tests.test_dataset.TestDataset ‑ test_reduce_strings
xarray.tests.test_dataset.TestDataset ‑ test_reindex
xarray.tests.test_dataset.TestDataset ‑ test_reindex_attrs_encoding
xarray.tests.test_dataset.TestDataset ‑ test_reindex_fill_value[2.0]
xarray.tests.test_dataset.TestDataset ‑ test_reindex_fill_value[2]
xarray.tests.test_dataset.TestDataset ‑ test_reindex_fill_value[fill_value0]
xarray.tests.test_dataset.TestDataset ‑ test_reindex_fill_value[fill_value3]
xarray.tests.test_dataset.TestDataset ‑ test_reindex_like
xarray.tests.test_dataset.TestDataset ‑ test_reindex_like_fill_value[2.0]
xarray.tests.test_dataset.TestDataset ‑ test_reindex_like_fill_value[2]
xarray.tests.test_dataset.TestDataset ‑ test_reindex_like_fill_value[fill_value0]
xarray.tests.test_dataset.TestDataset ‑ test_reindex_like_fill_value[fill_value3]
xarray.tests.test_dataset.TestDataset ‑ test_reindex_method
xarray.tests.test_dataset.TestDataset ‑ test_reindex_str_dtype[bytes]
xarray.tests.test_dataset.TestDataset ‑ test_reindex_str_dtype[str]
xarray.tests.test_dataset.TestDataset ‑ test_reindex_variables_copied
xarray.tests.test_dataset.TestDataset ‑ test_reindex_warning
xarray.tests.test_dataset.TestDataset ‑ test_rename
xarray.tests.test_dataset.TestDataset ‑ test_rename_dimension_coord
xarray.tests.test_dataset.TestDataset ‑ test_rename_dimension_coord_warnings
xarray.tests.test_dataset.TestDataset ‑ test_rename_dims
xarray.tests.test_dataset.TestDataset ‑ test_rename_does_not_change_CFTimeIndex_type
xarray.tests.test_dataset.TestDataset ‑ test_rename_does_not_change_DatetimeIndex_type
xarray.tests.test_dataset.TestDataset ‑ test_rename_multiindex
xarray.tests.test_dataset.TestDataset ‑ test_rename_old_name
xarray.tests.test_dataset.TestDataset ‑ test_rename_perserve_attrs_encoding
xarray.tests.test_dataset.TestDataset ‑ test_rename_same_name
xarray.tests.test_dataset.TestDataset ‑ test_rename_vars
xarray.tests.test_dataset.TestDataset ‑ test_reorder_levels
xarray.tests.test_dataset.TestDataset ‑ test_repr
xarray.tests.test_dataset.TestDataset ‑ test_repr_multiindex
xarray.tests.test_dataset.TestDataset ‑ test_repr_nep18
xarray.tests.test_dataset.TestDataset ‑ test_repr_period_index
xarray.tests.test_dataset.TestDataset ‑ test_reset_encoding
xarray.tests.test_dataset.TestDataset ‑ test_reset_index
xarray.tests.test_dataset.TestDataset ‑ test_reset_index_drop_convert[arg4-False-dropped4-converted4-renamed4]
xarray.tests.test_dataset.TestDataset ‑ test_reset_index_drop_convert[arg5-True-dropped5-converted5-renamed5]
xarray.tests.test_dataset.TestDataset ‑ test_reset_index_drop_convert[arg6-False-dropped6-converted6-renamed6]
xarray.tests.test_dataset.TestDataset ‑ test_reset_index_drop_convert[arg7-True-dropped7-converted7-renamed7]
xarray.tests.test_dataset.TestDataset ‑ test_reset_index_drop_convert[foo-False-dropped0-converted0-renamed0]
xarray.tests.test_dataset.TestDataset ‑ test_reset_index_drop_convert[foo-True-dropped1-converted1-renamed1]
xarray.tests.test_dataset.TestDataset ‑ test_reset_index_drop_convert[x-False-dropped2-converted2-renamed2]
xarray.tests.test_dataset.TestDataset ‑ test_reset_index_drop_convert[x-True-dropped3-converted3-renamed3]
xarray.tests.test_dataset.TestDataset ‑ test_reset_index_drop_dims
xarray.tests.test_dataset.TestDataset ‑ test_reset_index_keep_attrs
xarray.tests.test_dataset.TestDataset ‑ test_roll_coords
xarray.tests.test_dataset.TestDataset ‑ test_roll_multidim
xarray.tests.test_dataset.TestDataset ‑ test_roll_no_coords
xarray.tests.test_dataset.TestDataset ‑ test_sel
xarray.tests.test_dataset.TestDataset ‑ test_sel_categorical
xarray.tests.test_dataset.TestDataset ‑ test_sel_categorical_error
xarray.tests.test_dataset.TestDataset ‑ test_sel_dataarray
xarray.tests.test_dataset.TestDataset ‑ test_sel_dataarray_mindex
xarray.tests.test_dataset.TestDataset ‑ test_sel_drop
xarray.tests.test_dataset.TestDataset ‑ test_sel_drop_mindex
xarray.tests.test_dataset.TestDataset ‑ test_sel_fancy
xarray.tests.test_dataset.TestDataset ‑ test_sel_method
xarray.tests.test_dataset.TestDataset ‑ test_selection_multiindex
xarray.tests.test_dataset.TestDataset ‑ test_set_index
xarray.tests.test_dataset.TestDataset ‑ test_set_index_deindexed_coords
xarray.tests.test_dataset.TestDataset ‑ test_set_xindex
xarray.tests.test_dataset.TestDataset ‑ test_set_xindex_options
xarray.tests.test_dataset.TestDataset ‑ test_setattr_raises
xarray.tests.test_dataset.TestDataset ‑ test_setitem
xarray.tests.test_dataset.TestDataset ‑ test_setitem_align_new_indexes
xarray.tests.test_dataset.TestDataset ‑ test_setitem_auto_align
xarray.tests.test_dataset.TestDataset ‑ test_setitem_both_non_unique_index
xarray.tests.test_dataset.TestDataset ‑ test_setitem_dimension_override
xarray.tests.test_dataset.TestDataset ‑ test_setitem_multiindex_level
xarray.tests.test_dataset.TestDataset ‑ test_setitem_original_non_unique_index
xarray.tests.test_dataset.TestDataset ‑ test_setitem_pandas
xarray.tests.test_dataset.TestDataset ‑ test_setitem_str_dtype[bytes]
xarray.tests.test_dataset.TestDataset ‑ test_setitem_str_dtype[str]
xarray.tests.test_dataset.TestDataset ‑ test_setitem_using_list
xarray.tests.test_dataset.TestDataset ‑ test_setitem_using_list_errors[var_list0-data0-Different lengths]
xarray.tests.test_dataset.TestDataset ‑ test_setitem_using_list_errors[var_list1-data1-Empty list of variables]
xarray.tests.test_dataset.TestDataset ‑ test_setitem_using_list_errors[var_list2-data2-assign single DataArray]
xarray.tests.test_dataset.TestDataset ‑ test_setitem_with_coords
xarray.tests.test_dataset.TestDataset ‑ test_shift[2.0]
xarray.tests.test_dataset.TestDataset ‑ test_shift[2]
xarray.tests.test_dataset.TestDataset ‑ test_shift[fill_value0]
xarray.tests.test_dataset.TestDataset ‑ test_shift[fill_value3]
xarray.tests.test_dataset.TestDataset ‑ test_slice_virtual_variable
xarray.tests.test_dataset.TestDataset ‑ test_sortby
xarray.tests.test_dataset.TestDataset ‑ test_squeeze
xarray.tests.test_dataset.TestDataset ‑ test_squeeze_drop
xarray.tests.test_dataset.TestDataset ‑ test_stack
xarray.tests.test_dataset.TestDataset ‑ test_stack_create_index[False-expected_keys1]
xarray.tests.test_dataset.TestDataset ‑ test_stack_create_index[None-expected_keys2]
xarray.tests.test_dataset.TestDataset ‑ test_stack_create_index[True-expected_keys0]
xarray.tests.test_dataset.TestDataset ‑ test_stack_multi_index
xarray.tests.test_dataset.TestDataset ‑ test_stack_non_dim_coords
xarray.tests.test_dataset.TestDataset ‑ test_stack_unstack_fast
xarray.tests.test_dataset.TestDataset ‑ test_stack_unstack_slow
xarray.tests.test_dataset.TestDataset ‑ test_swap_dims
xarray.tests.test_dataset.TestDataset ‑ test_tail
xarray.tests.test_dataset.TestDataset ‑ test_thin
xarray.tests.test_dataset.TestDataset ‑ test_time_season
xarray.tests.test_dataset.TestDataset ‑ test_to_and_from_dataframe
xarray.tests.test_dataset.TestDataset ‑ test_to_and_from_dict[True-False]
xarray.tests.test_dataset.TestDataset ‑ test_to_and_from_dict[True-True]
xarray.tests.test_dataset.TestDataset ‑ test_to_and_from_dict[array-False]
xarray.tests.test_dataset.TestDataset ‑ test_to_and_from_dict[array-True]
xarray.tests.test_dataset.TestDataset ‑ test_to_and_from_dict[list-False]
xarray.tests.test_dataset.TestDataset ‑ test_to_and_from_dict[list-True]
xarray.tests.test_dataset.TestDataset ‑ test_to_and_from_dict_with_nan_nat[True]
xarray.tests.test_dataset.TestDataset ‑ test_to_and_from_dict_with_nan_nat[array]
xarray.tests.test_dataset.TestDataset ‑ test_to_and_from_dict_with_nan_nat[list]
xarray.tests.test_dataset.TestDataset ‑ test_to_and_from_dict_with_time_dim
xarray.tests.test_dataset.TestDataset ‑ test_to_and_from_empty_dataframe
xarray.tests.test_dataset.TestDataset ‑ test_to_array

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

18042 tests found (test 8715 to 9494)

There are 18042 tests, see "Raw output" for the list of tests 8715 to 9494.
Raw output
xarray.tests.test_dataset.TestDataset ‑ test_to_dict_with_numpy_attrs
xarray.tests.test_dataset.TestDataset ‑ test_to_pandas
xarray.tests.test_dataset.TestDataset ‑ test_to_stacked_array_dtype_dims
xarray.tests.test_dataset.TestDataset ‑ test_to_stacked_array_invalid_sample_dims
xarray.tests.test_dataset.TestDataset ‑ test_to_stacked_array_name
xarray.tests.test_dataset.TestDataset ‑ test_to_stacked_array_to_unstacked_dataset
xarray.tests.test_dataset.TestDataset ‑ test_to_stacked_array_to_unstacked_dataset_different_dimension
xarray.tests.test_dataset.TestDataset ‑ test_unary_ops
xarray.tests.test_dataset.TestDataset ‑ test_unicode_data
xarray.tests.test_dataset.TestDataset ‑ test_unstack
xarray.tests.test_dataset.TestDataset ‑ test_unstack_errors
xarray.tests.test_dataset.TestDataset ‑ test_unstack_fill_value
xarray.tests.test_dataset.TestDataset ‑ test_unstack_sparse
xarray.tests.test_dataset.TestDataset ‑ test_update
xarray.tests.test_dataset.TestDataset ‑ test_update_auto_align
xarray.tests.test_dataset.TestDataset ‑ test_update_index
xarray.tests.test_dataset.TestDataset ‑ test_update_multiindex_level
xarray.tests.test_dataset.TestDataset ‑ test_update_overwrite_coords
xarray.tests.test_dataset.TestDataset ‑ test_variable
xarray.tests.test_dataset.TestDataset ‑ test_variable_indexing
xarray.tests.test_dataset.TestDataset ‑ test_virtual_variable_same_name
xarray.tests.test_dataset.TestDataset ‑ test_virtual_variables_default_coords
xarray.tests.test_dataset.TestDataset ‑ test_virtual_variables_time
xarray.tests.test_dataset.TestDataset ‑ test_where
xarray.tests.test_dataset.TestDataset ‑ test_where_drop
xarray.tests.test_dataset.TestDataset ‑ test_where_drop_empty
xarray.tests.test_dataset.TestDataset ‑ test_where_drop_no_indexes
xarray.tests.test_dataset.TestDataset ‑ test_where_other
xarray.tests.test_dataset.TestDropDuplicates ‑ test_drop_duplicates_1d[False]
xarray.tests.test_dataset.TestDropDuplicates ‑ test_drop_duplicates_1d[first]
xarray.tests.test_dataset.TestDropDuplicates ‑ test_drop_duplicates_1d[last]
xarray.tests.test_dataset.TestNumpyCoercion ‑ test_from_cupy
xarray.tests.test_dataset.TestNumpyCoercion ‑ test_from_dask
xarray.tests.test_dataset.TestNumpyCoercion ‑ test_from_numpy
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_deprecation_helpers ‑ test_deprecate_positional_args_warns_for_class
xarray.tests.test_deprecation_helpers ‑ test_deprecate_positional_args_warns_for_function
xarray.tests.test_distributed ‑ test_async
xarray.tests.test_distributed ‑ test_dask_distributed_netcdf_roundtrip[h5netcdf-NETCDF4]
xarray.tests.test_distributed ‑ test_dask_distributed_netcdf_roundtrip[netcdf4-NETCDF3_CLASSIC]
xarray.tests.test_distributed ‑ test_dask_distributed_netcdf_roundtrip[netcdf4-NETCDF4]
xarray.tests.test_distributed ‑ test_dask_distributed_netcdf_roundtrip[netcdf4-NETCDF4_CLASSIC]
xarray.tests.test_distributed ‑ test_dask_distributed_netcdf_roundtrip[scipy-NETCDF3_64BIT]
xarray.tests.test_distributed ‑ test_dask_distributed_read_netcdf_integration_test[h5netcdf-NETCDF4]
xarray.tests.test_distributed ‑ test_dask_distributed_read_netcdf_integration_test[netcdf4-NETCDF3_CLASSIC]
xarray.tests.test_distributed ‑ test_dask_distributed_read_netcdf_integration_test[netcdf4-NETCDF4]
xarray.tests.test_distributed ‑ test_dask_distributed_read_netcdf_integration_test[netcdf4-NETCDF4_CLASSIC]
xarray.tests.test_distributed ‑ test_dask_distributed_read_netcdf_integration_test[scipy-NETCDF3_64BIT]
xarray.tests.test_distributed ‑ test_dask_distributed_write_netcdf_with_dimensionless_variables
xarray.tests.test_distributed ‑ test_dask_distributed_zarr_integration_test[False-False]
xarray.tests.test_distributed ‑ test_dask_distributed_zarr_integration_test[False-True]
xarray.tests.test_distributed ‑ test_dask_distributed_zarr_integration_test[True-False]
xarray.tests.test_distributed ‑ test_dask_distributed_zarr_integration_test[True-True]
xarray.tests.test_distributed ‑ test_hdf5_lock
xarray.tests.test_distributed ‑ test_open_mfdataset_can_open_files_with_cftime_index
xarray.tests.test_distributed ‑ test_serializable_locks
xarray.tests.test_dtypes ‑ test_inf[(1+1j)]
xarray.tests.test_dtypes ‑ test_inf[1.0]
xarray.tests.test_dtypes ‑ test_inf[True]
xarray.tests.test_dtypes ‑ test_inf[ab]
xarray.tests.test_dtypes ‑ test_inf[inf]
xarray.tests.test_dtypes ‑ test_maybe_promote[B-expected2]
xarray.tests.test_dtypes ‑ test_maybe_promote[D-expected4]
xarray.tests.test_dtypes ‑ test_maybe_promote[F-expected7]
xarray.tests.test_dtypes ‑ test_maybe_promote[H-expected10]
xarray.tests.test_dtypes ‑ test_maybe_promote[I-expected12]
xarray.tests.test_dtypes ‑ test_maybe_promote[L-expected14]
xarray.tests.test_dtypes ‑ test_maybe_promote[M-expected16]
xarray.tests.test_dtypes ‑ test_maybe_promote[O-expected17]
xarray.tests.test_dtypes ‑ test_maybe_promote[P-expected19]
xarray.tests.test_dtypes ‑ test_maybe_promote[Q-expected21]
xarray.tests.test_dtypes ‑ test_maybe_promote[S-expected22]
xarray.tests.test_dtypes ‑ test_maybe_promote[U-expected23]
xarray.tests.test_dtypes ‑ test_maybe_promote[V-expected24]
xarray.tests.test_dtypes ‑ test_maybe_promote[a-expected0]
xarray.tests.test_dtypes ‑ test_maybe_promote[b-expected1]
xarray.tests.test_dtypes ‑ test_maybe_promote[c-expected3]
xarray.tests.test_dtypes ‑ test_maybe_promote[d-expected5]
xarray.tests.test_dtypes ‑ test_maybe_promote[e-expected6]
xarray.tests.test_dtypes ‑ test_maybe_promote[f-expected8]
xarray.tests.test_dtypes ‑ test_maybe_promote[h-expected9]
xarray.tests.test_dtypes ‑ test_maybe_promote[i-expected11]
xarray.tests.test_dtypes ‑ test_maybe_promote[l-expected13]
xarray.tests.test_dtypes ‑ test_maybe_promote[m-expected15]
xarray.tests.test_dtypes ‑ test_maybe_promote[p-expected18]
xarray.tests.test_dtypes ‑ test_maybe_promote[q-expected20]
xarray.tests.test_dtypes ‑ test_nat_types_membership
xarray.tests.test_dtypes ‑ test_result_type[args0-bool]
xarray.tests.test_dtypes ‑ test_result_type[args1-object_]
xarray.tests.test_dtypes ‑ test_result_type[args2-float64]
xarray.tests.test_dtypes ‑ test_result_type[args3-object_]
xarray.tests.test_dtypes ‑ test_result_type[args4-object_]
xarray.tests.test_dtypes ‑ test_result_type[args5-str_]
xarray.tests.test_dtypes ‑ test_result_type[args6-object_]
xarray.tests.test_dtypes ‑ test_result_type_dask_array
xarray.tests.test_dtypes ‑ test_result_type_scalar
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-False-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-False-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-max-False-False-str-2]
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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-False-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-False-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-False-min-False-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-False-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-False-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-False-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-False-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-False-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-False-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-False-False-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-False-False-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-False-False-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-False-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-False-True-bool_-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-False-True-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-max-False-True-str-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-False-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-False-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-False-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-False-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-False-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-False-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-False-False-int-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-False-False-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-False-False-str-2]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-False-True-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-False-True-bool_-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-False-True-str-1]
xarray.tests.test_duck_array_ops ‑ test_argmin_max[x-True-min-False-True-str-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-bool_-2]
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-float-2]
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-float32-2]
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-int-2]
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-False-str-2]
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-bool_-2]
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-float-2]
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-float32-2]
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-int-2]
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-False-str-2]
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-bool_-2]
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-float-2]
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-float32-2]
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-int-2]
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-False-str-2]
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-bool_-2]
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-False-True-str-2]
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-bool_-2]
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-float-2]
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-float32-2]
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-int-2]
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-False-str-2]
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-bool_-2]
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-False-True-str-2]
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_argmin_max_error
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_cumprod_2d
xarray.tests.test_duck_array_ops ‑ test_cumsum_1d
xarray.tests.test_duck_array_ops ‑ test_cumsum_2d
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_mean[False]
xarray.tests.test_duck_array_ops ‑ test_datetime_mean[True]
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[False]
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_empty_axis_dtype
xarray.tests.test_duck_array_ops ‑ test_isnull[array0]
xarray.tests.test_duck_array_ops ‑ test_isnull[array1]
xarray.tests.test_duck_array_ops ‑ test_isnull[array2]
xarray.tests.test_duck_array_ops ‑ test_isnull[array3]
xarray.tests.test_duck_array_ops ‑ test_isnull[array4]
xarray.tests.test_duck_array_ops ‑ test_isnull_with_dask
xarray.tests.test_duck_array_ops ‑ test_least_squares[False-False]
xarray.tests.test_duck_array_ops ‑ test_least_squares[False-True]
xarray.tests.test_duck_array_ops ‑ test_least_squares[True-False]
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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-prod-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-prod-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-prod-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-prod-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-prod-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-prod-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-prod-False-int-2]
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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-sum-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-sum-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-sum-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-sum-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-sum-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-sum-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-None-sum-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-prod-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-prod-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-prod-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-prod-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-prod-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-prod-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-prod-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-sum-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-sum-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-sum-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-sum-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-sum-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-sum-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-False-x-sum-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-prod-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-prod-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-prod-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-prod-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-prod-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-prod-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-prod-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-sum-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-sum-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-sum-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-sum-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-sum-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-sum-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-None-sum-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-prod-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-prod-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-prod-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-prod-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-prod-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-prod-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-prod-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-sum-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-sum-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-sum-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-sum-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-sum-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-sum-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[False-True-x-sum-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-prod-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-prod-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-prod-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-prod-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-prod-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-prod-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-prod-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-sum-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-sum-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-sum-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-sum-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-sum-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-sum-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-None-sum-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-prod-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-prod-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-prod-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-prod-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-prod-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-prod-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-prod-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-sum-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-sum-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-sum-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-sum-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-sum-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-sum-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-False-x-sum-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-prod-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-prod-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-prod-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-prod-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-prod-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-prod-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-prod-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-sum-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-sum-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-sum-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-sum-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-sum-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-sum-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-None-sum-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-prod-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-prod-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-prod-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-prod-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-prod-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-prod-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-prod-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-sum-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-sum-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-sum-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-sum-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-sum-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-sum-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[None-True-x-sum-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-prod-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-prod-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-prod-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-prod-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-prod-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-prod-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-prod-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-sum-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-sum-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-sum-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-sum-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-sum-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-sum-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-None-sum-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-prod-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-prod-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-prod-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-prod-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-prod-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-prod-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-prod-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-sum-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-sum-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-sum-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-sum-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-sum-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-sum-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-False-x-sum-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-prod-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-prod-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-prod-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-prod-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-prod-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-prod-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-prod-False-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]

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

18042 tests found (test 9495 to 10335)

There are 18042 tests, see "Raw output" for the list of tests 9495 to 10335.
Raw output
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-prod-True-float-1]
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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-sum-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-sum-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-sum-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-sum-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-sum-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-sum-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-None-sum-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-prod-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-prod-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-prod-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-prod-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-prod-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-prod-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-prod-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-sum-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-sum-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-sum-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-sum-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-sum-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-sum-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_min_count[True-True-x-sum-False-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_dataset[prod]
xarray.tests.test_duck_array_ops ‑ test_min_count_dataset[sum]
xarray.tests.test_duck_array_ops ‑ test_min_count_nd[prod-False-bool_]
xarray.tests.test_duck_array_ops ‑ test_min_count_nd[prod-False-float32]
xarray.tests.test_duck_array_ops ‑ test_min_count_nd[prod-False-float]
xarray.tests.test_duck_array_ops ‑ test_min_count_nd[prod-False-int]
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-False-bool_]
xarray.tests.test_duck_array_ops ‑ test_min_count_nd[sum-False-float32]
xarray.tests.test_duck_array_ops ‑ test_min_count_nd[sum-False-float]
xarray.tests.test_duck_array_ops ‑ test_min_count_nd[sum-False-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-False]
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-False]
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-False]
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-False]
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-False]
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-False]
xarray.tests.test_duck_array_ops ‑ test_min_count_specific[b-sum-True]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[prod-False-False-bool_]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[prod-False-False-float32]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[prod-False-False-float]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[prod-False-False-int]
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-False-bool_]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[prod-True-False-float32]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[prod-True-False-float]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[prod-True-False-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-False-bool_]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[sum-False-False-float32]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[sum-False-False-float]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[sum-False-False-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-False-bool_]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[sum-True-False-float32]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[sum-True-False-float]
xarray.tests.test_duck_array_ops ‑ test_multiple_dims[sum-True-False-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_np_timedelta64_to_float[td0-86400000000000.0]
xarray.tests.test_duck_array_ops ‑ test_np_timedelta64_to_float[td1-1.0]
xarray.tests.test_duck_array_ops ‑ test_pd_timedelta_to_float[td0-86400000000000.0]
xarray.tests.test_duck_array_ops ‑ test_pd_timedelta_to_float[td1-1.0]
xarray.tests.test_duck_array_ops ‑ test_push_dask
xarray.tests.test_duck_array_ops ‑ test_py_timedelta_to_float
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-max-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-max-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-max-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-max-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-max-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-max-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-max-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-max-False-int-2]
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-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-mean-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-mean-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-mean-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-mean-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-mean-False-int-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-min-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-min-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-min-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-min-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-min-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-min-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-min-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-sum-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-sum-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-sum-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-sum-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-sum-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-sum-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-sum-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-var-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-var-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-var-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-var-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-var-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-var-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-False-var-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-max-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-max-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-max-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-max-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-max-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-max-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-max-False-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-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-mean-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-mean-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-mean-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-mean-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-mean-False-int-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-min-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-min-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-min-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-min-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-min-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-min-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-min-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-sum-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-sum-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-sum-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-sum-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-sum-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-sum-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-sum-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-var-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-var-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-var-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-var-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-var-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-var-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[None-True-var-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-max-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-max-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-max-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-max-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-max-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-max-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-max-False-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-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-mean-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-mean-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-mean-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-mean-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-mean-False-int-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-min-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-min-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-min-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-min-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-min-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-min-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-min-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-sum-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-sum-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-sum-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-sum-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-sum-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-sum-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-sum-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-var-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-var-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-var-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-var-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-var-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-var-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-False-var-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-max-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-max-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-max-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-max-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-max-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-max-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-max-False-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-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-mean-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-mean-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-mean-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-mean-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-mean-False-int-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-min-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-min-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-min-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-min-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-min-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-min-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-min-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-sum-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-sum-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-sum-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-sum-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-sum-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-sum-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-sum-False-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-False-bool_-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-var-False-bool_-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-var-False-float-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-var-False-float-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-var-False-float32-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-var-False-float32-2]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-var-False-int-1]
xarray.tests.test_duck_array_ops ‑ test_reduce[x-True-var-False-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 ‑ test_timedelta_to_numeric[1 day]
xarray.tests.test_duck_array_ops ‑ test_timedelta_to_numeric[td0]
xarray.tests.test_duck_array_ops ‑ test_timedelta_to_numeric[td1]
xarray.tests.test_duck_array_ops ‑ test_timedelta_to_numeric[td2]
xarray.tests.test_duck_array_ops.TestArrayNotNullEquiv ‑ test_equal[arr10-arr20]
xarray.tests.test_duck_array_ops.TestArrayNotNullEquiv ‑ test_equal[arr11-arr21]
xarray.tests.test_duck_array_ops.TestArrayNotNullEquiv ‑ test_equal[arr12-arr22]
xarray.tests.test_duck_array_ops.TestArrayNotNullEquiv ‑ test_some_not_equal
xarray.tests.test_duck_array_ops.TestArrayNotNullEquiv ‑ test_types[1.0-2.0-3.0-nan]
xarray.tests.test_duck_array_ops.TestArrayNotNullEquiv ‑ test_types[foo-bar-baz-None]
xarray.tests.test_duck_array_ops.TestArrayNotNullEquiv ‑ test_types[foo-bar-baz-nan]
xarray.tests.test_duck_array_ops.TestArrayNotNullEquiv ‑ test_types[val10-val20-val30-null0]
xarray.tests.test_duck_array_ops.TestArrayNotNullEquiv ‑ test_wrong_shape
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_duck_array_ops.TestOps ‑ test_all_nan_arrays
xarray.tests.test_duck_array_ops.TestOps ‑ test_concatenate_type_promotion
xarray.tests.test_duck_array_ops.TestOps ‑ test_count
xarray.tests.test_duck_array_ops.TestOps ‑ test_first
xarray.tests.test_duck_array_ops.TestOps ‑ test_last
xarray.tests.test_duck_array_ops.TestOps ‑ test_stack_type_promotion
xarray.tests.test_duck_array_ops.TestOps ‑ test_where_type_promotion
xarray.tests.test_extensions.TestAccessor ‑ test_broken_accessor
xarray.tests.test_extensions.TestAccessor ‑ test_pickle_dataarray
xarray.tests.test_extensions.TestAccessor ‑ test_pickle_dataset
xarray.tests.test_extensions.TestAccessor ‑ test_register
xarray.tests.test_formatting ‑ test__element_formatter
xarray.tests.test_formatting ‑ test__mapping_repr[1-40-30]
xarray.tests.test_formatting ‑ test__mapping_repr[11-40-30]
xarray.tests.test_formatting ‑ test__mapping_repr[35-40-30]
xarray.tests.test_formatting ‑ test__mapping_repr[50-40-30]
xarray.tests.test_formatting ‑ test__mapping_repr_recursive
xarray.tests.test_formatting ‑ test_inline_variable_array_repr_custom_repr
xarray.tests.test_formatting ‑ test_large_array_repr_length
xarray.tests.test_formatting ‑ test_lazy_array_wont_compute
xarray.tests.test_formatting ‑ test_repr_file_collapsed
xarray.tests.test_formatting ‑ test_set_numpy_options
xarray.tests.test_formatting ‑ test_short_array_repr
xarray.tests.test_formatting.TestFormatting ‑ test_array_repr
xarray.tests.test_formatting.TestFormatting ‑ test_array_repr_recursive
xarray.tests.test_formatting.TestFormatting ‑ test_array_repr_variable
xarray.tests.test_formatting.TestFormatting ‑ test_array_scalar_format
xarray.tests.test_formatting.TestFormatting ‑ test_attribute_repr
xarray.tests.test_formatting.TestFormatting ‑ test_diff_array_repr
xarray.tests.test_formatting.TestFormatting ‑ test_diff_attrs_repr_with_array
xarray.tests.test_formatting.TestFormatting ‑ test_diff_dataset_repr
xarray.tests.test_formatting.TestFormatting ‑ test_first_n_items
xarray.tests.test_formatting.TestFormatting ‑ test_format_array_flat
xarray.tests.test_formatting.TestFormatting ‑ test_format_item
xarray.tests.test_formatting.TestFormatting ‑ test_format_items
xarray.tests.test_formatting.TestFormatting ‑ test_format_timestamp_invalid_pandas_format
xarray.tests.test_formatting.TestFormatting ‑ test_format_timestamp_out_of_bounds
xarray.tests.test_formatting.TestFormatting ‑ test_get_indexer_at_least_n_items
xarray.tests.test_formatting.TestFormatting ‑ test_index_repr
xarray.tests.test_formatting.TestFormatting ‑ test_last_item
xarray.tests.test_formatting.TestFormatting ‑ test_last_n_items
xarray.tests.test_formatting.TestFormatting ‑ test_maybe_truncate
xarray.tests.test_formatting.TestFormatting ‑ test_pretty_print
xarray.tests.test_formatting_html ‑ test_format_dims_index
xarray.tests.test_formatting_html ‑ test_format_dims_no_dims
xarray.tests.test_formatting_html ‑ test_format_dims_non_index
xarray.tests.test_formatting_html ‑ test_format_dims_unsafe_dim_name
xarray.tests.test_formatting_html ‑ test_nonstr_variable_repr_html
xarray.tests.test_formatting_html ‑ test_repr_of_dataarray
xarray.tests.test_formatting_html ‑ test_repr_of_dataset
xarray.tests.test_formatting_html ‑ test_repr_of_multiindex
xarray.tests.test_formatting_html ‑ test_repr_of_nonstr_dataarray
xarray.tests.test_formatting_html ‑ test_repr_of_nonstr_dataset
xarray.tests.test_formatting_html ‑ test_repr_text_fallback
xarray.tests.test_formatting_html ‑ test_short_data_repr_html
xarray.tests.test_formatting_html ‑ test_short_data_repr_html_dask
xarray.tests.test_formatting_html ‑ test_short_data_repr_html_non_str_keys
xarray.tests.test_formatting_html ‑ test_summarize_attrs_with_unsafe_attr_name_and_value
xarray.tests.test_formatting_html ‑ test_variable_repr_html
xarray.tests.test_groupby ‑ test_consolidate_slices
xarray.tests.test_groupby ‑ test_da_groupby_assign_coords
xarray.tests.test_groupby ‑ test_da_groupby_empty
xarray.tests.test_groupby ‑ test_da_groupby_map_func_args
xarray.tests.test_groupby ‑ test_da_groupby_quantile
xarray.tests.test_groupby ‑ test_ds_groupby_map_func_args
xarray.tests.test_groupby ‑ test_ds_groupby_quantile
xarray.tests.test_groupby ‑ test_groupby_binary_op_regression
xarray.tests.test_groupby ‑ test_groupby_bins_cut_kwargs[False]
xarray.tests.test_groupby ‑ test_groupby_bins_cut_kwargs[True]
xarray.tests.test_groupby ‑ test_groupby_bins_math[False]
xarray.tests.test_groupby ‑ test_groupby_bins_math[True]
xarray.tests.test_groupby ‑ test_groupby_bins_timeseries
xarray.tests.test_groupby ‑ test_groupby_cumprod
xarray.tests.test_groupby ‑ test_groupby_cumsum
xarray.tests.test_groupby ‑ test_groupby_da_datetime
xarray.tests.test_groupby ‑ test_groupby_dataarray_map_dataset_func
xarray.tests.test_groupby ‑ test_groupby_dataset
xarray.tests.test_groupby ‑ test_groupby_dataset_assign
xarray.tests.test_groupby ‑ test_groupby_dataset_errors
xarray.tests.test_groupby ‑ test_groupby_dataset_fillna
xarray.tests.test_groupby ‑ test_groupby_dataset_iter
xarray.tests.test_groupby ‑ test_groupby_dataset_map_dataarray_func
xarray.tests.test_groupby ‑ test_groupby_dataset_math[False]
xarray.tests.test_groupby ‑ test_groupby_dataset_math[True]
xarray.tests.test_groupby ‑ test_groupby_dataset_math_virtual
xarray.tests.test_groupby ‑ test_groupby_dataset_nan
xarray.tests.test_groupby ‑ test_groupby_dataset_order
xarray.tests.test_groupby ‑ test_groupby_dataset_reduce
xarray.tests.test_groupby ‑ test_groupby_dataset_returns_new_type
xarray.tests.test_groupby ‑ test_groupby_dataset_where
xarray.tests.test_groupby ‑ test_groupby_dims_property
xarray.tests.test_groupby ‑ test_groupby_drops_nans
xarray.tests.test_groupby ‑ test_groupby_duplicate_coordinate_labels
xarray.tests.test_groupby ‑ test_groupby_flox_kwargs[kwargs0]
xarray.tests.test_groupby ‑ test_groupby_flox_kwargs[kwargs1]
xarray.tests.test_groupby ‑ test_groupby_getitem
xarray.tests.test_groupby ‑ test_groupby_grouping_errors
xarray.tests.test_groupby ‑ test_groupby_input_mutation
xarray.tests.test_groupby ‑ test_groupby_map_change_group_size[obj0]
xarray.tests.test_groupby ‑ test_groupby_map_change_group_size[obj1]
xarray.tests.test_groupby ‑ test_groupby_map_shrink_groups[obj0]
xarray.tests.test_groupby ‑ test_groupby_map_shrink_groups[obj1]
xarray.tests.test_groupby ‑ test_groupby_math_bitshift
xarray.tests.test_groupby ‑ test_groupby_math_dim_order
xarray.tests.test_groupby ‑ test_groupby_math_more
xarray.tests.test_groupby ‑ test_groupby_math_nD_group
xarray.tests.test_groupby ‑ test_groupby_multiple_string_args
xarray.tests.test_groupby ‑ test_groupby_none_group_name
xarray.tests.test_groupby ‑ test_groupby_quantile_interpolation_deprecated[False]
xarray.tests.test_groupby ‑ test_groupby_quantile_interpolation_deprecated[True]
xarray.tests.test_groupby ‑ test_groupby_reduce_dimension_error
xarray.tests.test_groupby ‑ test_groupby_repr[obj0-month]
xarray.tests.test_groupby ‑ test_groupby_repr[obj0-x]
xarray.tests.test_groupby ‑ test_groupby_repr[obj0-y]
xarray.tests.test_groupby ‑ test_groupby_repr[obj0-z]
xarray.tests.test_groupby ‑ test_groupby_repr[obj1-month]
xarray.tests.test_groupby ‑ test_groupby_repr[obj1-x]
xarray.tests.test_groupby ‑ test_groupby_repr[obj1-y]
xarray.tests.test_groupby ‑ test_groupby_repr[obj1-z]
xarray.tests.test_groupby ‑ test_groupby_repr_datetime[obj0]
xarray.tests.test_groupby ‑ test_groupby_repr_datetime[obj1]
xarray.tests.test_groupby ‑ test_min_count_error[False]
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 ‑ test_multi_index_groupby_map
xarray.tests.test_groupby ‑ test_multi_index_groupby_sum
xarray.tests.test_groupby ‑ test_reduce_numeric_only
xarray.tests.test_groupby ‑ test_resample_cumsum[cumprod-expected_array1]
xarray.tests.test_groupby ‑ test_resample_cumsum[cumsum-expected_array0]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_assign_coords
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs0-coords0-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs0-coords0-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs0-coords1-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs0-coords1-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs0-coords2-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs0-coords2-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs1-coords0-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs1-coords0-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs1-coords1-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs1-coords1-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs1-coords2-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs1-coords2-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs2-coords0-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs2-coords0-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs2-coords1-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs2-coords1-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs2-coords2-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs2-coords2-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs3-coords0-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs3-coords0-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs3-coords1-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs3-coords1-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs3-coords2-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs3-coords2-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs4-coords0-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs4-coords0-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs4-coords1-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs4-coords1-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs4-coords2-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins[cut_kwargs4-coords2-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins_ellipsis
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins_empty
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins_gives_correct_subset[False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins_gives_correct_subset[True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins_multidim
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_bins_sort
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_count
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_fillna
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_first_and_last
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_iter
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_keep_attrs[False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_keep_attrs[None]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_keep_attrs[True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_center
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_changes_metadata
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_identity[False-False-abc-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_identity[False-False-x-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_identity[False-False-y-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_identity[False-False-y-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_identity[False-True-abc-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_identity[False-True-x-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_identity[False-True-y-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_identity[False-True-y-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_identity[True-False-abc-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_identity[True-False-x-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_identity[True-False-y-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_identity[True-False-y-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_identity[True-True-abc-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_identity[True-True-x-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_identity[True-True-y-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_identity[True-True-y-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_map_ndarray
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_math
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_math_not_aligned
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_math_squeeze[False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_math_squeeze[True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_multidim
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_multidim_map
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_properties
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_reduce_keep_attrs[False-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_reduce_keep_attrs[False-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_reduce_keep_attrs[None-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_reduce_keep_attrs[None-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_reduce_keep_attrs[True-False]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_reduce_keep_attrs[True-True]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_reductions[mean]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_reductions[median]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_reductions[sum]
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_restore_coord_dims
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_restore_dim_order
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_groupby_sum
xarray.tests.test_groupby.TestDataArrayGroupBy ‑ test_stack_groupby_unsorted_coord
xarray.tests.test_groupby.TestDataArrayResample ‑ test_da_resample_func_args
xarray.tests.test_groupby.TestDataArrayResample ‑ test_resample[False]
xarray.tests.test_groupby.TestDataArrayResample ‑ test_resample[True]
xarray.tests.test_groupby.TestDataArrayResample ‑ test_resample_bad_resample_dim
xarray.tests.test_groupby.TestDataArrayResample ‑ test_resample_base
xarray.tests.test_groupby.TestDataArrayResample ‑ test_resample_doctest[False]
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_resample_first
xarray.tests.test_groupby.TestDataArrayResample ‑ test_resample_invalid_loffset
xarray.tests.test_groupby.TestDataArrayResample ‑ test_resample_keep_attrs
xarray.tests.test_groupby.TestDataArrayResample ‑ test_resample_loffset[-12H]
xarray.tests.test_groupby.TestDataArrayResample ‑ test_resample_loffset[loffset1]
xarray.tests.test_groupby.TestDataArrayResample ‑ test_resample_loffset[loffset2]
xarray.tests.test_groupby.TestDataArrayResample ‑ test_resample_loffset[loffset3]
xarray.tests.test_groupby.TestDataArrayResample ‑ test_resample_offset
xarray.tests.test_groupby.TestDataArrayResample ‑ test_resample_origin
xarray.tests.test_groupby.TestDataArrayResample ‑ test_resample_skipna
xarray.tests.test_groupby.TestDataArrayResample ‑ test_upsample
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.TestDataArrayResample ‑ test_upsample_nd
xarray.tests.test_groupby.TestDataArrayResample ‑ test_upsample_tolerance
xarray.tests.test_groupby.TestDatasetResample ‑ test_ds_resample_apply_func_args
xarray.tests.test_groupby.TestDatasetResample ‑ test_resample_and_first
xarray.tests.test_groupby.TestDatasetResample ‑ test_resample_by_last_discarding_attrs
xarray.tests.test_groupby.TestDatasetResample ‑ test_resample_by_mean_discarding_attrs
xarray.tests.test_groupby.TestDatasetResample ‑ test_resample_by_mean_with_keep_attrs
xarray.tests.test_groupby.TestDatasetResample ‑ test_resample_drop_nondim_coords
xarray.tests.test_groupby.TestDatasetResample ‑ test_resample_ds_da_are_the_same
xarray.tests.test_groupby.TestDatasetResample ‑ test_resample_loffset
xarray.tests.test_groupby.TestDatasetResample ‑ test_resample_min_count
xarray.tests.test_groupby.TestDatasetResample ‑ test_resample_old_api
xarray.tests.test_indexes ‑ test_asarray_tuplesafe
xarray.tests.test_indexes ‑ test_restore_dtype_on_multiindexes[float32]
xarray.tests.test_indexes ‑ test_restore_dtype_on_multiindexes[int32]
xarray.tests.test_indexes ‑ test_safe_cast_to_index
xarray.tests.test_indexes ‑ test_safe_cast_to_index_cftimeindex
xarray.tests.test_indexes ‑ test_safe_cast_to_index_datetime_datetime
xarray.tests.test_indexes.TestIndex ‑ test_concat
xarray.tests.test_indexes.TestIndex ‑ test_copy[False]
xarray.tests.test_indexes.TestIndex ‑ test_copy[True]
xarray.tests.test_indexes.TestIndex ‑ test_create_variables
xarray.tests.test_indexes.TestIndex ‑ test_equals
xarray.tests.test_indexes.TestIndex ‑ test_from_variables
xarray.tests.test_indexes.TestIndex ‑ test_getitem
xarray.tests.test_indexes.TestIndex ‑ test_isel
xarray.tests.test_indexes.TestIndex ‑ test_join
xarray.tests.test_indexes.TestIndex ‑ test_reindex_like
xarray.tests.test_indexes.TestIndex ‑ test_rename
xarray.tests.test_indexes.TestIndex ‑ test_roll
xarray.tests.test_indexes.TestIndex ‑ test_sel
xarray.tests.test_indexes.TestIndex ‑ test_stack
xarray.tests.test_indexes.TestIndex ‑ test_to_pandas_index
xarray.tests.test_indexes.TestIndex ‑ test_unstack
xarray.tests.test_indexes.TestIndexes ‑ test_copy_indexes[pd_index]
xarray.tests.test_indexes.TestIndexes ‑ test_copy_indexes[xr_index]
xarray.tests.test_indexes.TestIndexes ‑ test_dims[pd_index]
xarray.tests.test_indexes.TestIndexes ‑ test_dims[xr_index]
xarray.tests.test_indexes.TestIndexes ‑ test_get_all_coords[pd_index]
xarray.tests.test_indexes.TestIndexes ‑ test_get_all_coords[xr_index]
xarray.tests.test_indexes.TestIndexes ‑ test_get_all_dims[pd_index]
xarray.tests.test_indexes.TestIndexes ‑ test_get_all_dims[xr_index]
xarray.tests.test_indexes.TestIndexes ‑ test_get_unique[pd_index]
xarray.tests.test_indexes.TestIndexes ‑ test_get_unique[xr_index]
xarray.tests.test_indexes.TestIndexes ‑ test_group_by_index[pd_index]
xarray.tests.test_indexes.TestIndexes ‑ test_group_by_index[xr_index]
xarray.tests.test_indexes.TestIndexes ‑ test_interface[pd_index]
xarray.tests.test_indexes.TestIndexes ‑ test_interface[xr_index]
xarray.tests.test_indexes.TestIndexes ‑ test_is_multi[pd_index]
xarray.tests.test_indexes.TestIndexes ‑ test_is_multi[xr_index]
xarray.tests.test_indexes.TestIndexes ‑ test_to_pandas_indexes[pd_index]
xarray.tests.test_indexes.TestIndexes ‑ test_to_pandas_indexes[xr_index]
xarray.tests.test_indexes.TestIndexes ‑ test_variables[pd_index]
xarray.tests.test_indexes.TestIndexes ‑ test_variables[xr_index]
xarray.tests.test_indexes.TestPandasIndex ‑ test_concat_dim_error
xarray.tests.test_indexes.TestPandasIndex ‑ test_concat_empty
xarray.tests.test_indexes.TestPandasIndex ‑ test_concat_periods
xarray.tests.test_indexes.TestPandasIndex ‑ test_concat_str_dtype[bytes]
xarray.tests.test_indexes.TestPandasIndex ‑ test_concat_str_dtype[str]
xarray.tests.test_indexes.TestPandasIndex ‑ test_constructor
xarray.tests.test_indexes.TestPandasIndex ‑ test_copy
xarray.tests.test_indexes.TestPandasIndex ‑ test_create_variables
xarray.tests.test_indexes.TestPandasIndex ‑ test_equals
xarray.tests.test_indexes.TestPandasIndex ‑ test_from_variables
xarray.tests.test_indexes.TestPandasIndex ‑ test_from_variables_index_adapter
xarray.tests.test_indexes.TestPandasIndex ‑ test_getitem
xarray.tests.test_indexes.TestPandasIndex ‑ test_join
xarray.tests.test_indexes.TestPandasIndex ‑ test_reindex_like
xarray.tests.test_indexes.TestPandasIndex ‑ test_rename
xarray.tests.test_indexes.TestPandasIndex ‑ test_sel
xarray.tests.test_indexes.TestPandasIndex ‑ test_sel_boolean
xarray.tests.test_indexes.TestPandasIndex ‑ test_sel_datetime
xarray.tests.test_indexes.TestPandasIndex ‑ test_sel_unsorted_datetime_index_raises
xarray.tests.test_indexes.TestPandasIndex ‑ test_to_pandas_index
xarray.tests.test_indexes.TestPandasMultiIndex ‑ test_concat
xarray.tests.test_indexes.TestPandasMultiIndex ‑ test_constructor
xarray.tests.test_indexes.TestPandasMultiIndex ‑ test_copy
xarray.tests.test_indexes.TestPandasMultiIndex ‑ test_create_variables
xarray.tests.test_indexes.TestPandasMultiIndex ‑ test_from_variables
xarray.tests.test_indexes.TestPandasMultiIndex ‑ test_join
xarray.tests.test_indexes.TestPandasMultiIndex ‑ test_rename
xarray.tests.test_indexes.TestPandasMultiIndex ‑ test_sel
xarray.tests.test_indexes.TestPandasMultiIndex ‑ test_stack
xarray.tests.test_indexes.TestPandasMultiIndex ‑ test_stack_non_unique
xarray.tests.test_indexes.TestPandasMultiIndex ‑ test_unstack
xarray.tests.test_indexing ‑ test_advanced_indexing_dask_array
xarray.tests.test_indexing ‑ test_base_explicit_indexer
xarray.tests.test_indexing ‑ test_basic_indexer
xarray.tests.test_indexing ‑ test_create_mask_basic_indexer
xarray.tests.test_indexing ‑ test_create_mask_dask
xarray.tests.test_indexing ‑ test_create_mask_error
xarray.tests.test_indexing ‑ test_create_mask_outer_indexer
xarray.tests.test_indexing ‑ test_create_mask_vectorized_indexer
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.BASIC-basic-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.BASIC-basic-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.BASIC-basic1-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.BASIC-basic1-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.BASIC-basic2-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.BASIC-basic2-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.BASIC-basic3-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.BASIC-basic3-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.BASIC-outer-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.BASIC-outer-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.BASIC-outer1vec-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.BASIC-outer1vec-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.BASIC-outer_scalar-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.BASIC-outer_scalar-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.BASIC-outer_scalar2-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.BASIC-outer_scalar2-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.BASIC-vectorized-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.BASIC-vectorized-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER-basic-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER-basic-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER-basic1-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER-basic1-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER-basic2-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER-basic2-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER-basic3-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER-basic3-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER-outer-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER-outer-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER-outer1vec-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER-outer1vec-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER-outer_scalar-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER-outer_scalar-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER-outer_scalar2-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER-outer_scalar2-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER-vectorized-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER-vectorized-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER_1VECTOR-basic-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER_1VECTOR-basic-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER_1VECTOR-basic1-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER_1VECTOR-basic1-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER_1VECTOR-basic2-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER_1VECTOR-basic2-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER_1VECTOR-basic3-shape0]

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

18042 tests found (test 10336 to 11227)

There are 18042 tests, see "Raw output" for the list of tests 10336 to 11227.
Raw output
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER_1VECTOR-basic3-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER_1VECTOR-outer-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER_1VECTOR-outer-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER_1VECTOR-outer1vec-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER_1VECTOR-outer1vec-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER_1VECTOR-outer_scalar-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER_1VECTOR-outer_scalar-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER_1VECTOR-outer_scalar2-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER_1VECTOR-outer_scalar2-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER_1VECTOR-vectorized-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.OUTER_1VECTOR-vectorized-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.VECTORIZED-basic-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.VECTORIZED-basic-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.VECTORIZED-basic1-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.VECTORIZED-basic1-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.VECTORIZED-basic2-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.VECTORIZED-basic2-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.VECTORIZED-basic3-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.VECTORIZED-basic3-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.VECTORIZED-outer-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.VECTORIZED-outer-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.VECTORIZED-outer1vec-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.VECTORIZED-outer1vec-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.VECTORIZED-outer_scalar-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.VECTORIZED-outer_scalar-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.VECTORIZED-outer_scalar2-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.VECTORIZED-outer_scalar2-shape1]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.VECTORIZED-vectorized-shape0]
xarray.tests.test_indexing ‑ test_decompose_indexers[IndexingSupport.VECTORIZED-vectorized-shape1]
xarray.tests.test_indexing ‑ test_decompose_slice[sl0-100]
xarray.tests.test_indexing ‑ test_decompose_slice[sl0-99]
xarray.tests.test_indexing ‑ test_decompose_slice[sl1-100]
xarray.tests.test_indexing ‑ test_decompose_slice[sl1-99]
xarray.tests.test_indexing ‑ test_decompose_slice[sl2-100]
xarray.tests.test_indexing ‑ test_decompose_slice[sl2-99]
xarray.tests.test_indexing ‑ test_decompose_slice[sl3-100]
xarray.tests.test_indexing ‑ test_decompose_slice[sl3-99]
xarray.tests.test_indexing ‑ test_implicit_indexing_adapter
xarray.tests.test_indexing ‑ test_implicit_indexing_adapter_copy_on_write
xarray.tests.test_indexing ‑ test_indexing_1d_object_array
xarray.tests.test_indexing ‑ test_indexing_dask_array
xarray.tests.test_indexing ‑ test_indexing_dask_array_scalar
xarray.tests.test_indexing ‑ test_invalid_for_all[BasicIndexer]
xarray.tests.test_indexing ‑ test_invalid_for_all[OuterIndexer]
xarray.tests.test_indexing ‑ test_invalid_for_all[VectorizedIndexer]
xarray.tests.test_indexing ‑ test_outer_indexer
xarray.tests.test_indexing ‑ test_outer_indexer_consistency_with_broadcast_indexes_vectorized
xarray.tests.test_indexing ‑ test_posify_mask_subindexer[indices0-expected0]
xarray.tests.test_indexing ‑ test_posify_mask_subindexer[indices1-expected1]
xarray.tests.test_indexing ‑ test_posify_mask_subindexer[indices2-expected2]
xarray.tests.test_indexing ‑ test_posify_mask_subindexer[indices3-expected3]
xarray.tests.test_indexing ‑ test_posify_mask_subindexer[indices4-expected4]
xarray.tests.test_indexing ‑ test_posify_mask_subindexer[indices5-expected5]
xarray.tests.test_indexing ‑ test_posify_mask_subindexer[indices6-expected6]
xarray.tests.test_indexing ‑ test_vectorized_indexer
xarray.tests.test_indexing ‑ test_vectorized_indexing_dask_array
xarray.tests.test_indexing.TestCopyOnWriteArray ‑ test_index_scalar
xarray.tests.test_indexing.TestCopyOnWriteArray ‑ test_setitem
xarray.tests.test_indexing.TestCopyOnWriteArray ‑ test_sub_array
xarray.tests.test_indexing.TestIndexers ‑ test_expanded_indexer
xarray.tests.test_indexing.TestIndexers ‑ test_group_indexers_by_index
xarray.tests.test_indexing.TestIndexers ‑ test_map_index_queries
xarray.tests.test_indexing.TestIndexers ‑ test_read_only_view
xarray.tests.test_indexing.TestIndexers ‑ test_stacked_multiindex_min_max
xarray.tests.test_indexing.TestLazyArray ‑ test_lazily_indexed_array
xarray.tests.test_indexing.TestLazyArray ‑ test_slice_slice
xarray.tests.test_indexing.TestLazyArray ‑ test_vectorized_lazily_indexed_array
xarray.tests.test_indexing.TestMemoryCachedArray ‑ test_index_scalar
xarray.tests.test_indexing.TestMemoryCachedArray ‑ test_setitem
xarray.tests.test_indexing.TestMemoryCachedArray ‑ test_sub_array
xarray.tests.test_indexing.TestMemoryCachedArray ‑ test_wrapper
xarray.tests.test_indexing.Test_vectorized_indexer ‑ test_arrayize_vectorized_indexer
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_merge.TestMergeFunction ‑ test_merge_alignment_error
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs[<lambda>-var1_attrs10-var2_attrs10-expected_attrs10-False]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs[drop-var1_attrs4-var2_attrs4-expected_attrs4-False]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs[drop_conflicts-var1_attrs8-var2_attrs8-expected_attrs8-False]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs[drop_conflicts-var1_attrs9-var2_attrs9-expected_attrs9-False]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs[identical-var1_attrs5-var2_attrs5-expected_attrs5-False]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs[identical-var1_attrs6-var2_attrs6-expected_attrs6-True]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs[no_conflicts-var1_attrs0-var2_attrs0-expected_attrs0-False]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs[no_conflicts-var1_attrs1-var2_attrs1-expected_attrs1-False]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs[no_conflicts-var1_attrs2-var2_attrs2-expected_attrs2-False]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs[no_conflicts-var1_attrs3-var2_attrs3-expected_attrs3-True]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs[override-var1_attrs7-var2_attrs7-expected_attrs7-False]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs_default
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs_variables[<lambda>-attrs19-attrs29-expected_attrs9-False]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs_variables[drop-attrs14-attrs24-expected_attrs4-False]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs_variables[drop_conflicts-attrs18-attrs28-expected_attrs8-False]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs_variables[identical-attrs15-attrs25-expected_attrs5-False]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs_variables[identical-attrs16-attrs26-expected_attrs6-True]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs_variables[no_conflicts-attrs10-attrs20-expected_attrs0-False]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs_variables[no_conflicts-attrs11-attrs21-expected_attrs1-False]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs_variables[no_conflicts-attrs12-attrs22-expected_attrs2-False]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs_variables[no_conflicts-attrs13-attrs23-expected_attrs3-True]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_arrays_attrs_variables[override-attrs17-attrs27-expected_attrs7-False]
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_attrs_drop_conflicts
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_attrs_no_conflicts_compat_minimal
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_attrs_override_copy
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_dataarray_unnamed
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_datasets
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_dicts_dims
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_dicts_simple
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_error
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_no_conflicts_broadcast
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_no_conflicts_multi_var
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_no_conflicts_preserve_attrs
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_no_conflicts_single_var
xarray.tests.test_merge.TestMergeFunction ‑ test_merge_wrong_input_error
xarray.tests.test_merge.TestMergeInternals ‑ test_broadcast_dimension_size
xarray.tests.test_merge.TestMergeMethod ‑ test_merge
xarray.tests.test_merge.TestMergeMethod ‑ test_merge_auto_align
xarray.tests.test_merge.TestMergeMethod ‑ test_merge_broadcast_equals
xarray.tests.test_merge.TestMergeMethod ‑ test_merge_combine_attrs[drop-attrs10-attrs20-expected_attrs0-False]
xarray.tests.test_merge.TestMergeMethod ‑ test_merge_combine_attrs[drop_conflicts-attrs11-attrs21-expected_attrs1-False]
xarray.tests.test_merge.TestMergeMethod ‑ test_merge_combine_attrs[identical-attrs14-attrs24-None-True]
xarray.tests.test_merge.TestMergeMethod ‑ test_merge_combine_attrs[no_conflicts-attrs13-attrs23-None-True]
xarray.tests.test_merge.TestMergeMethod ‑ test_merge_combine_attrs[override-attrs12-attrs22-expected_attrs2-False]
xarray.tests.test_merge.TestMergeMethod ‑ test_merge_compat
xarray.tests.test_merge.TestMergeMethod ‑ test_merge_dataarray
xarray.tests.test_merge.TestMergeMethod ‑ test_merge_fill_value[2.0]
xarray.tests.test_merge.TestMergeMethod ‑ test_merge_fill_value[2]
xarray.tests.test_merge.TestMergeMethod ‑ test_merge_fill_value[fill_value0]
xarray.tests.test_merge.TestMergeMethod ‑ test_merge_fill_value[fill_value3]
xarray.tests.test_merge.TestMergeMethod ‑ test_merge_no_conflicts
xarray.tests.test_missing ‑ test_bfill_dataset
xarray.tests.test_missing ‑ test_bfill_use_bottleneck
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
xarray.tests.test_missing ‑ test_ffill_use_bottleneck_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_get_clean_interp_index_strict[index0]
xarray.tests.test_missing ‑ test_get_clean_interp_index_strict[index1]
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
xarray.tests.test_missing ‑ test_interpolate_2d_coord_raises
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_dataset
xarray.tests.test_missing ‑ test_interpolate_duplicate_values_raises
xarray.tests.test_missing ‑ test_interpolate_invalid_interpolator_raises
xarray.tests.test_missing ‑ test_interpolate_keep_attrs
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_multiindex_raises
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_errors
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_no_dim_raises
xarray.tests.test_missing ‑ test_interpolate_pd_compat
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_interpolate_use_coordinate
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[krog]
xarray.tests.test_missing ‑ test_scipy_methods_function[pchip]
xarray.tests.test_missing ‑ test_scipy_methods_function[spline]
xarray.tests.test_nputils ‑ test_is_contiguous
xarray.tests.test_nputils ‑ test_vindex
xarray.tests.test_options ‑ test_arithmetic_join
xarray.tests.test_options ‑ test_display_style
xarray.tests.test_options ‑ test_display_width
xarray.tests.test_options ‑ test_enable_cftimeindex
xarray.tests.test_options ‑ test_file_cache_maxsize
xarray.tests.test_options ‑ test_get_options_retention[exact]
xarray.tests.test_options ‑ test_get_options_retention[left]
xarray.tests.test_options ‑ test_invalid_option_raises
xarray.tests.test_options ‑ test_keep_attrs
xarray.tests.test_options ‑ test_nested_options
xarray.tests.test_options.TestAttrRetention ‑ test_concat_attr_retention
xarray.tests.test_options.TestAttrRetention ‑ test_dataarray_attr_retention
xarray.tests.test_options.TestAttrRetention ‑ test_dataset_attr_retention
xarray.tests.test_options.TestAttrRetention ‑ test_display_dataarray_style_html
xarray.tests.test_options.TestAttrRetention ‑ test_display_dataarray_style_text
xarray.tests.test_options.TestAttrRetention ‑ test_display_style_html
xarray.tests.test_options.TestAttrRetention ‑ test_display_style_text
xarray.tests.test_options.TestAttrRetention ‑ test_groupby_attr_retention
xarray.tests.test_options.TestAttrRetention ‑ test_merge_attr_retention
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_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_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_x_ticks_are_rotated_for_time
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_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_x_ticks_are_rotated_for_time
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[continuous]
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_datetime_hue[discrete]
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_default_labels
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_facetgrid_hue_style[continuous]
xarray.tests.test_plot.TestDatasetScatterPlots ‑ test_facetgrid_hue_style[discrete]
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
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_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_x_ticks_are_rotated_for_time
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_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_x_ticks_are_rotated_for_time
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

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

18042 tests found (test 11228 to 11955)

There are 18042 tests, see "Raw output" for the list of tests 11228 to 11955.
Raw output
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_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_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_x_ticks_are_rotated_for_time
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_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_x_ticks_are_rotated_for_time
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_plugins ‑ test_backends_dict_from_pkg
xarray.tests.test_plugins ‑ test_broken_plugin
xarray.tests.test_plugins ‑ test_build_engines
xarray.tests.test_plugins ‑ test_build_engines_sorted
xarray.tests.test_plugins ‑ test_engines_not_installed
xarray.tests.test_plugins ‑ test_lazy_import
xarray.tests.test_plugins ‑ test_list_engines
xarray.tests.test_plugins ‑ test_no_matching_engine_found
xarray.tests.test_plugins ‑ test_refresh_engines
xarray.tests.test_plugins ‑ test_remove_duplicates
xarray.tests.test_plugins ‑ test_remove_duplicates_warnings
xarray.tests.test_plugins ‑ test_set_missing_parameters
xarray.tests.test_plugins ‑ test_set_missing_parameters_raise_error
xarray.tests.test_print_versions ‑ test_show_versions
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_construct[0.0-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_construct[0.0-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_construct[0.0-center2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_construct[nan-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_construct[nan-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_construct[nan-center2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[dask-max-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[dask-max-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[dask-max-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[dask-max-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[dask-mean-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[dask-mean-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[dask-mean-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[dask-mean-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[dask-sum-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[dask-sum-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[dask-sum-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[dask-sum-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numpy-max-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numpy-max-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numpy-max-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numpy-max-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numpy-mean-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numpy-mean-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numpy-mean-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numpy-mean-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numpy-sum-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numpy-sum-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numpy-sum-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_ndrolling_reduce[numpy-sum-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_repeated_rolling_rechunks
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_construct[1-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_construct[1-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_construct[2-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_construct[2-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_construct[3-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_construct[3-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_construct[4-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_construct[4-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_count_correct
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_doc[1-numpy]
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_iter[numpy-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[numpy-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[numpy-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[numpy-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[numpy-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[numpy-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[numpy-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[numpy-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[numpy-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[numpy-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[numpy-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[numpy-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[numpy-7-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[numpy-7-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[numpy-7-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_iter[numpy-7-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_keep_attrs[construct-argument2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_keep_attrs[count-argument3]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_keep_attrs[mean-argument1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_keep_attrs[reduce-argument0]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[1-1-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[1-1-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[1-2-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[1-2-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[1-3-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[1-3-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[1-None-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[1-None-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[2-1-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[2-1-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[2-2-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[2-2-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[2-3-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[2-3-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[2-None-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[2-None-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[3-1-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[3-1-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[3-2-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[3-2-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[3-3-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[3-3-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[3-None-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[3-None-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[4-1-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[4-1-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[4-2-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[4-2-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[4-3-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[4-3-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[4-None-False]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_pandas_compat[4-None-True]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_properties[1-dask]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_properties[1-numpy]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-1-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-1-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-1-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-1-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-1-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-1-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-1-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-1-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-1-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-1-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-1-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-1-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-1-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-1-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-1-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-1-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-2-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-2-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-2-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-2-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-2-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-2-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-2-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-2-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-2-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-2-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-2-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-2-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-2-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-2-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-2-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-2-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-3-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-3-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-3-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-3-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-3-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-3-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-3-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-3-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-3-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-3-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-3-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-3-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-3-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-3-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-3-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-3-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-4-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-4-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-4-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-4-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-4-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-4-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-4-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-4-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-4-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-4-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-4-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-4-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-4-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-4-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-4-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-max-4-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-1-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-1-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-1-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-1-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-1-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-1-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-1-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-1-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-1-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-1-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-1-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-1-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-1-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-1-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-1-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-1-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-2-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-2-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-2-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-2-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-2-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-2-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-2-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-2-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-2-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-2-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-2-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-2-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-2-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-2-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-2-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-2-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-3-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-3-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-3-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-3-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-3-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-3-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-3-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-3-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-3-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-3-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-3-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-3-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-3-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-3-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-3-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-3-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-4-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-4-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-4-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-4-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-4-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-4-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-4-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-4-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-4-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-4-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-4-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-4-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-4-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-4-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-4-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-mean-4-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-1-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-1-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-1-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-1-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-1-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-1-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-1-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-1-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-1-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-1-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-1-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-1-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-1-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-1-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-1-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-1-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-2-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-2-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-2-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-2-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-2-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-2-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-2-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-2-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-2-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-2-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-2-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-2-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-2-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-2-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-2-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-2-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-3-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-3-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-3-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-3-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-3-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-3-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-3-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-3-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-3-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-3-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-3-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-3-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-3-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-3-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-3-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-3-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-4-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-4-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-4-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-4-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-4-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-4-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-4-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-4-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-4-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-4-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-4-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-4-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-4-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-4-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-4-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-std-4-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-1-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-1-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-1-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-1-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-1-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-1-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-1-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-1-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-1-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-1-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-1-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-1-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-1-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-1-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-1-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-1-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-2-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-2-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-2-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-2-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-2-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-2-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-2-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-2-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-2-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-2-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-2-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-2-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-2-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-2-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-2-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-2-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-3-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-3-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-3-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-3-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-3-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-3-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-3-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-3-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-3-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-3-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-3-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-3-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-3-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-3-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-3-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-3-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-4-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-4-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-4-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-4-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-4-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-4-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-4-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-4-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-4-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-4-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-4-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-4-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-4-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-4-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-4-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[dask-sum-4-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-1-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-1-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-1-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-1-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-1-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-1-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-1-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-1-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-1-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-1-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-1-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-1-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-1-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-1-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-1-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-1-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-2-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-2-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-2-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-2-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-2-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-2-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-2-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-2-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-2-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-2-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-2-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-2-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-2-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-2-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-2-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-2-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-3-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-3-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-3-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-3-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-3-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-3-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-3-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-3-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-3-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-3-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-3-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-3-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-3-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-3-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-3-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-3-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-4-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-4-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-4-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-4-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-4-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-4-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-4-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-4-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-4-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-4-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-4-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-4-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-4-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-4-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-4-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-max-4-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-1-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-1-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-1-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-1-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-1-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-1-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-1-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-1-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-1-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-1-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-1-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-1-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-1-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-1-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-1-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-1-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-2-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-2-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-2-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-2-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-2-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-2-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-2-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-2-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-2-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-2-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-2-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-2-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-2-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-2-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-2-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-2-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-3-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-3-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-3-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-3-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-3-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-3-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-3-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-3-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-3-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-3-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-3-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-3-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-3-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-3-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-3-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-3-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-4-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-4-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-4-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-4-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-4-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-4-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-4-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-4-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-4-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-4-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-4-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-4-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-4-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-4-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-4-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-mean-4-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-1-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-1-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-1-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-1-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-1-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-1-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-1-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-1-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-1-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-1-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-1-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-1-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-1-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-1-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-1-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-1-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-2-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-2-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-2-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-2-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-2-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-2-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-2-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-2-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-2-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-2-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-2-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-2-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-2-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-2-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-2-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-2-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-3-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-3-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-3-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-3-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-3-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-3-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-3-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-3-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-3-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-3-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-3-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-3-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-3-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-3-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-3-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-3-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-4-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-4-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-4-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-4-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-4-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-4-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-4-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-4-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-4-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-4-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-4-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-4-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-4-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-4-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-4-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-std-4-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-1-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-1-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-1-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-1-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-1-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-1-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-1-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-1-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-1-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-1-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-1-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-1-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-1-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-1-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-1-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-1-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-2-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-2-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-2-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-2-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-2-2-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-2-2-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-2-2-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-2-2-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-2-3-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-2-3-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-2-3-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-2-3-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-2-None-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-2-None-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-2-None-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-2-None-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-3-1-False-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-3-1-False-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-3-1-True-1]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-3-1-True-2]
xarray.tests.test_rolling.TestDataArrayRolling ‑ test_rolling_reduce[numpy-sum-3-2-False-1]