From 2941a945bd7f9b28a660759ec767b6d330563300 Mon Sep 17 00:00:00 2001 From: Tom White Date: Mon, 25 May 2026 08:41:38 +0100 Subject: [PATCH] Changes after support for `contant_values` in Cubed `pad` --- cubed_xarray/tests/test_xarray.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cubed_xarray/tests/test_xarray.py b/cubed_xarray/tests/test_xarray.py index 6017638..6d538f4 100644 --- a/cubed_xarray/tests/test_xarray.py +++ b/cubed_xarray/tests/test_xarray.py @@ -121,7 +121,6 @@ def test_transpose(self): v = self.lazy_var self.assertLazyAndIdentical(u.T, v.T) - @pytest.mark.xfail(reason="needs pad mode='constant_values' in cubed") def test_shift(self): u = self.eager_var v = self.lazy_var @@ -362,7 +361,7 @@ def test_groupby(self): actual = v.groupby("x").mean(...) self.assertLazyAndAllClose(expected, actual) - @pytest.mark.xfail(reason="needs pad mode='constant_values' in cubed") + @pytest.mark.xfail(reason="needs cubed.lib.stride_tricks.sliding_window_view") def test_rolling(self): u = self.eager_array v = self.lazy_array