(func, map_ds)
| 1400 | ], |
| 1401 | ) |
| 1402 | def test_map_blocks_ds_transformations(func, map_ds): |
| 1403 | with raise_if_dask_computes(): |
| 1404 | actual = xr.map_blocks(func, map_ds) |
| 1405 | |
| 1406 | assert_identical(actual, func(map_ds)) |
| 1407 | |
| 1408 | |
| 1409 | @pytest.mark.parametrize("obj", [make_da(), make_ds()]) |
nothing calls this directly
no test coverage detected
searching dependent graphs…