(darr)
| 67 | |
| 68 | |
| 69 | def test_unknown_chunk_sizes(darr): |
| 70 | darr._chunks = ((np.nan, 1), (4, 4)) |
| 71 | with pytest.raises( |
| 72 | ValueError, match="Shuffling only allowed with known chunk sizes" |
| 73 | ): |
| 74 | darr.shuffle([[1]], axis=1) |
| 75 | |
| 76 | |
| 77 | def test_oob_axis(darr): |
nothing calls this directly
no test coverage detected
searching dependent graphs…