()
| 1547 | |
| 1548 | |
| 1549 | def test_corr_only_dataarray() -> None: |
| 1550 | with pytest.raises(TypeError, match=r"Only xr.DataArray is supported"): |
| 1551 | xr.corr(xr.Dataset(), xr.Dataset()) # type: ignore[type-var] |
| 1552 | |
| 1553 | |
| 1554 | @pytest.fixture(scope="module") |
nothing calls this directly
no test coverage detected
searching dependent graphs…