()
| 1769 | |
| 1770 | |
| 1771 | def test_complex_cov() -> None: |
| 1772 | da = xr.DataArray([1j, -1j]) |
| 1773 | actual = xr.cov(da, da) |
| 1774 | assert abs(actual.item()) == 2 |
| 1775 | |
| 1776 | |
| 1777 | @pytest.mark.parametrize("weighted", [True, False]) |
nothing calls this directly
no test coverage detected
searching dependent graphs…