(func, map_da)
| 1380 | ], |
| 1381 | ) |
| 1382 | def test_map_blocks_da_transformations(func, map_da): |
| 1383 | with raise_if_dask_computes(): |
| 1384 | actual = xr.map_blocks(func, map_da) |
| 1385 | |
| 1386 | assert_identical(actual, func(map_da)) |
| 1387 | |
| 1388 | |
| 1389 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…