()
| 4924 | |
| 4925 | |
| 4926 | def test_normalize_chunks_nan(): |
| 4927 | with pytest.raises(ValueError) as info: |
| 4928 | normalize_chunks("auto", (np.nan,), limit=10, dtype=np.uint8) |
| 4929 | assert "auto" in str(info.value) |
| 4930 | with pytest.raises(ValueError) as info: |
| 4931 | normalize_chunks(((np.nan, np.nan), "auto"), (10, 10), limit=10, dtype=np.uint8) |
| 4932 | assert "auto" in str(info.value) |
| 4933 | |
| 4934 | |
| 4935 | def test_pandas_from_dask_array(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…