Skip to content

Commit

Permalink
xfail test_mitgcm for "auto" chunk_mode
Browse files Browse the repository at this point in the history
  • Loading branch information
VeckoTheGecko committed Nov 20, 2024
1 parent fa177a7 commit d013cd3
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion docs/examples/example_dask_chunk_OCMs.py
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,18 @@ def test_ofam_3D(mode, chunk_mode):

@pytest.mark.parametrize("mode", ["jit"])
@pytest.mark.parametrize(
"chunk_mode", [False, "auto", "specific_same", "specific_different"]
"chunk_mode",
[
False,
pytest.param(
"auto",
marks=pytest.mark.xfail(
reason="Dask v2024.11.0 caused auto chunking to fail. See #1762"
),
),
"specific_same",
"specific_different",
],
)
@pytest.mark.parametrize("using_add_field", [False, True])
def test_mitgcm(mode, chunk_mode, using_add_field):
Expand Down

0 comments on commit d013cd3

Please sign in to comment.