Skip to content

Commit 80b7cd4

Browse files
committed
xfail test_field_incompatible_combination[xarray-uxgrid]
1 parent dbbc290 commit 80b7cd4

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

tests/v4/test_field.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,14 @@ def test_field_init_param_types():
3232
"data,grid",
3333
[
3434
pytest.param(ux.UxDataArray(), Grid(xr.Dataset()), id="uxdata-grid"),
35-
pytest.param(xr.DataArray(), ux.UxDataArray().uxgrid, id="xarray-uxgrid"),
35+
pytest.param(
36+
xr.DataArray(),
37+
ux.UxDataArray().uxgrid,
38+
id="xarray-uxgrid",
39+
marks=pytest.mark.xfail(
40+
reason="Replace uxDataArray object with one that actually has a grid (once unstructured example datasets are in the codebase)."
41+
),
42+
),
3643
],
3744
)
3845
def test_field_incompatible_combination(data, grid):

0 commit comments

Comments
 (0)