Skip to content

Commit

Permalink
skip quintic for high dim interp
Browse files Browse the repository at this point in the history
  • Loading branch information
dcherian committed Nov 6, 2024
1 parent 17e7e59 commit f414160
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xarray/tests/test_interp.py
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,7 @@ def test_interpolate_chunk_1d(
It should do a series of 1d interpolation
"""

if method in ["cubic", "pchip"] and interp_ndim == 3:
if method in ["cubic", "pchip", "quintic"] and interp_ndim == 3:
pytest.skip("Too slow.")

# 3d non chunked data
Expand Down

0 comments on commit f414160

Please sign in to comment.