Skip to content

Commit 520f3d7

Browse files
committed
Fixes following xarray upstream improvements
1 parent 50538b1 commit 520f3d7

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

cubed_xarray/tests/test_xarray.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,6 @@ def test_repr(self):
178178
)
179179
assert expected == repr(self.lazy_var)
180180

181-
@pytest.mark.xfail(reason="duck array ops problem in xarray")
182181
def test_pickle(self):
183182
# Test that pickling/unpickling does not convert the cubed
184183
# backend to numpy
@@ -324,7 +323,6 @@ def test_chunk(self) -> None:
324323

325324
assert rechunked.chunksizes == expected_chunksizes
326325

327-
@pytest.mark.xfail(reason="cubed rechunk bug")
328326
def test_rechunk(self):
329327
chunked = self.eager_array.chunk({"x": 2}).chunk(
330328
{"y": 2}, chunked_array_type="cubed"
@@ -456,7 +454,6 @@ def test_duplicate_dims(self):
456454
assert chunked_array.chunks == ((2, 2), (2, 2))
457455
assert chunked_array.chunksizes == {"x": (2, 2)}
458456

459-
@pytest.mark.xfail(reason="duck array ops problem in xarray")
460457
def test_stack(self):
461458
data = cubed.random.random(size=(2, 3, 4), chunks=(1, 3, 4))
462459
arr = DataArray(data, dims=("w", "x", "y"))

0 commit comments

Comments
 (0)