(self)
| 773 | assert kernel_call_count == 0 |
| 774 | |
| 775 | def test_dataset_getattr(self): |
| 776 | # Test that pickling/unpickling converts the dask backend |
| 777 | # to numpy in neither the data variables nor the non-index coords |
| 778 | data = build_dask_array("data") |
| 779 | nonindex_coord = build_dask_array("coord") |
| 780 | ds = Dataset(data_vars={"a": ("x", data)}, coords={"y": ("x", nonindex_coord)}) |
| 781 | with suppress(AttributeError): |
| 782 | _ = ds.NOTEXIST |
| 783 | assert kernel_call_count == 0 |
| 784 | |
| 785 | def test_values(self): |
| 786 | # Test that invoking the values property does not convert the dask |
nothing calls this directly
no test coverage detected