MCPcopy Index your code
hub / github.com/dask/dask / test_normalize_chunks_nan

Function test_normalize_chunks_nan

dask/array/tests/test_array_core.py:4926–4932  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

4924
4925
4926def 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
4935def test_pandas_from_dask_array():

Callers

nothing calls this directly

Calls 1

normalize_chunksFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…