()
| 4917 | |
| 4918 | |
| 4919 | def test_normalize_chunks_nan(): |
| 4920 | with pytest.raises(ValueError) as info: |
| 4921 | normalize_chunks("auto", (np.nan,), limit=10, dtype=np.uint8) |
| 4922 | assert "auto" in str(info.value) |
| 4923 | with pytest.raises(ValueError) as info: |
| 4924 | normalize_chunks(((np.nan, np.nan), "auto"), (10, 10), limit=10, dtype=np.uint8) |
| 4925 | assert "auto" in str(info.value) |
| 4926 | |
| 4927 | |
| 4928 | def test_pandas_from_dask_array(): |
nothing calls this directly
no test coverage detected