()
| 3270 | |
| 3271 | |
| 3272 | def test_single_element_tuple(): |
| 3273 | assert normalize_chunks( |
| 3274 | (100, "auto"), (500, 500_000), dtype=np.int64, previous_chunks=((1,), (500,)) |
| 3275 | ) == ( |
| 3276 | (100,) * 5, |
| 3277 | ( |
| 3278 | 167_500, |
| 3279 | 167_500, |
| 3280 | 165_000, |
| 3281 | ), |
| 3282 | ) |
| 3283 | |
| 3284 | |
| 3285 | def test_align_chunks_to_previous_chunks(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…