()
| 7652 | |
| 7653 | |
| 7654 | def test_lazy_data_variable_not_loaded(): |
| 7655 | # GH8753 |
| 7656 | array = InaccessibleArray(np.array([1, 2, 3])) |
| 7657 | v = Variable(data=array, dims="x") |
| 7658 | # No data needs to be accessed, so no error should be raised |
| 7659 | da = xr.DataArray(v) |
| 7660 | # No data needs to be accessed, so no error should be raised |
| 7661 | xr.DataArray(da) |
| 7662 | |
| 7663 | |
| 7664 | def test_unstack_index_var() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…