()
| 713 | |
| 714 | |
| 715 | def test_argmin_max_error(): |
| 716 | da = construct_dataarray(2, np.bool_, contains_nan=True, dask=False) |
| 717 | da[0] = np.nan |
| 718 | with pytest.raises(ValueError): |
| 719 | da.argmin(dim="y") |
| 720 | |
| 721 | |
| 722 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…