()
| 1642 | |
| 1643 | |
| 1644 | def test_bagged_array_delayed(): |
| 1645 | pytest.importorskip("numpy") |
| 1646 | da = pytest.importorskip("dask.array") |
| 1647 | |
| 1648 | obj = da.ones(10, chunks=5).to_delayed()[0] |
| 1649 | bag = db.from_delayed(obj) |
| 1650 | b = bag.compute() |
| 1651 | assert_eq(b, [1.0, 1.0, 1.0, 1.0, 1.0]) |
| 1652 | |
| 1653 | |
| 1654 | def test_dask_layers(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…