From 1e543860a97c3d1fb47f241197e04a27f1881601 Mon Sep 17 00:00:00 2001 From: Tom White Date: Mon, 25 May 2026 10:11:49 +0100 Subject: [PATCH] Reinstate test_groupby_first_last following fix in Cubed See https://github.com/cubed-dev/cubed/pull/918 --- cubed_xarray/tests/test_xarray.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cubed_xarray/tests/test_xarray.py b/cubed_xarray/tests/test_xarray.py index 6d538f4..d48ab3a 100644 --- a/cubed_xarray/tests/test_xarray.py +++ b/cubed_xarray/tests/test_xarray.py @@ -371,7 +371,6 @@ def test_rolling(self): actual = v.rolling(x=2).mean() self.assertLazyAndAllClose(expected, actual) - @pytest.mark.xfail(reason="failure in cubed") @pytest.mark.parametrize("func", ["first", "last"]) def test_groupby_first_last(self, func): method = operator.methodcaller(func)