Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions cubed_xarray/tests/test_xarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading