(tmpdir)
| 110 | |
| 111 | |
| 112 | def _array_map_overlap(tmpdir): |
| 113 | da = pytest.importorskip("dask.array") |
| 114 | array = da.ones((100,)) |
| 115 | return array.map_overlap(lambda x: x, depth=1, boundary="none") |
| 116 | |
| 117 | |
| 118 | def test_fractional_slice(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…