We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7df95b9 commit ca245d6Copy full SHA for ca245d6
xarray/tests/test_groupby.py
@@ -728,7 +728,7 @@ def test_groupby_dataset_iter() -> None:
728
def test_groupby_dataset_errors() -> None:
729
data = create_test_data()
730
with pytest.raises(TypeError, match=r"`group` must be"):
731
- data.groupby(np.arange(10))
+ data.groupby(np.arange(10)) # type: ignore
732
with pytest.raises(ValueError, match=r"length does not match"):
733
data.groupby(data["dim1"][:3])
734
0 commit comments