()
| 1515 | |
| 1516 | |
| 1517 | def test_reshape_exceptions(): |
| 1518 | x = np.random.default_rng().integers(10, size=(5,)) |
| 1519 | a = from_array(x, chunks=(2,)) |
| 1520 | with pytest.raises(ValueError): |
| 1521 | da.reshape(a, (100,)) |
| 1522 | |
| 1523 | |
| 1524 | def test_reshape_splat(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…