(
start: str | None,
end: str | None,
periods: int | None,
freq: str | None,
inclusive: Literal["up"] | None,
)
| 1294 | ], |
| 1295 | ) |
| 1296 | def test_invalid_date_range_cftime_inputs( |
| 1297 | start: str | None, |
| 1298 | end: str | None, |
| 1299 | periods: int | None, |
| 1300 | freq: str | None, |
| 1301 | inclusive: Literal["up"] | None, |
| 1302 | ) -> None: |
| 1303 | with pytest.raises(ValueError): |
| 1304 | date_range(start, end, periods, freq, inclusive=inclusive, use_cftime=True) # type: ignore[arg-type] |
| 1305 | |
| 1306 | |
| 1307 | _CALENDAR_SPECIFIC_MONTH_END_TESTS = [ |
nothing calls this directly
no test coverage detected
searching dependent graphs…