()
| 133 | |
| 134 | |
| 135 | def test_interactive_xarray_dataarray_no_name(): |
| 136 | dataarray = xr.DataArray(np.random.rand(2, 2)) |
| 137 | with pytest.raises(ValueError, match='Cannot use interactive API on DataArray without name'): |
| 138 | Interactive(dataarray) |
| 139 | |
| 140 | |
| 141 | def test_interactive_xarray_dataset(dataset): |
nothing calls this directly
no test coverage detected
searching dependent graphs…