()
| 1028 | |
| 1029 | @requires_cftime |
| 1030 | def test_cftimeindex_shift_invalid_periods() -> None: |
| 1031 | index = xr.date_range("2000", periods=3, use_cftime=True) |
| 1032 | with pytest.raises(TypeError): |
| 1033 | index.shift("a", "D") |
| 1034 | |
| 1035 | |
| 1036 | @requires_cftime |
nothing calls this directly
no test coverage detected
searching dependent graphs…