()
| 759 | |
| 760 | @requires_dask |
| 761 | def 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") |
nothing calls this directly
no test coverage detected
searching dependent graphs…