Skip to content

Commit 4c56dde

Browse files
committed
Skip RK45 advection tests
1 parent 07f7c94 commit 4c56dde

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

tests/v4/test_advection.py

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,11 @@ def test_radialrotation(npart=10):
227227
("AdvDiffM1", 1e-2),
228228
("RK4", 1e-5),
229229
("RK4_3D", 1e-5),
230-
("RK45", 1e-5),
230+
pytest.param(
231+
"RK45",
232+
1e-5,
233+
marks=pytest.mark.skip(reason="https://github.com/OceanParcels/Parcels/pull/2134#issuecomment-3160726036"),
234+
),
231235
],
232236
)
233237
def test_moving_eddy(method, rtol):
@@ -282,7 +286,11 @@ def truth_moving(x_0, y_0, t):
282286
[
283287
("EE", 1e-2),
284288
("RK4", 1e-5),
285-
("RK45", 1e-5),
289+
pytest.param(
290+
"RK45",
291+
1e-5,
292+
marks=pytest.mark.skip(reason="https://github.com/OceanParcels/Parcels/pull/2134#issuecomment-3160726036"),
293+
),
286294
],
287295
)
288296
def test_decaying_moving_eddy(method, rtol):
@@ -330,7 +338,11 @@ def truth_moving(x_0, y_0, t):
330338
"method, atol",
331339
[
332340
("RK4", 1),
333-
("RK45", 1),
341+
pytest.param(
342+
"RK45",
343+
1,
344+
marks=pytest.mark.skip(reason="https://github.com/OceanParcels/Parcels/pull/2134#issuecomment-3160726036"),
345+
),
334346
],
335347
)
336348
@pytest.mark.parametrize("grid_type", ["A"]) # TODO also implement C-grid once available

0 commit comments

Comments
 (0)