()
| 848 | |
| 849 | @requires_cftime |
| 850 | def test_cftimeindex_shift_float_us() -> None: |
| 851 | a = xr.date_range("2000", periods=3, freq="D", use_cftime=True) |
| 852 | with pytest.raises( |
| 853 | ValueError, match="Could not convert to integer offset at any resolution" |
| 854 | ): |
| 855 | a.shift(2.5, "us") |
| 856 | |
| 857 | |
| 858 | @requires_cftime |
nothing calls this directly
no test coverage detected
searching dependent graphs…