MCPcopy Index your code
hub / github.com/pydata/xarray / test_isnull_with_dask

Function test_isnull_with_dask

xarray/tests/test_duck_array_ops.py:761–764  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

759
760@requires_dask
761def test_isnull_with_dask():
762 da = construct_dataarray(2, np.float32, contains_nan=True, dask=True)
763 assert isinstance(da.isnull().data, dask_array_type)
764 assert_equal(da.isnull().load(), da.load().isnull())
765
766
767@pytest.mark.skipif(not HAS_STRING_DTYPE, reason="requires StringDType to exist")

Callers

nothing calls this directly

Calls 4

assert_equalFunction · 0.90
construct_dataarrayFunction · 0.85
isnullMethod · 0.45
loadMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…