()
| 3272 | |
| 3273 | @requires_dask |
| 3274 | def test_lazy_int_bins_error() -> None: |
| 3275 | import dask.array |
| 3276 | |
| 3277 | with pytest.raises(ValueError, match="Bin edges must be provided"): |
| 3278 | with raise_if_dask_computes(): |
| 3279 | _ = BinGrouper(bins=4).factorize(DataArray(dask.array.arange(3))) |
| 3280 | |
| 3281 | |
| 3282 | def test_time_grouping_seasons_specified() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…