(compute_backend)
| 459 | @requires_dask |
| 460 | @pytest.mark.parametrize("compute_backend", ["numbagg"], indirect=True) |
| 461 | def test_ffill_use_numbagg_dask(compute_backend): |
| 462 | da = xr.DataArray(np.array([4, 5, np.nan], dtype=np.float64), dims="x") |
| 463 | da = da.chunk(x=-1) |
| 464 | # Succeeds with a single chunk: |
| 465 | _ = da.ffill("x").compute() |
| 466 | |
| 467 | |
| 468 | @requires_bottleneck |