Skip to content

Commit

Permalink
added embedded_skip markers to velocity_advection and solvenonhydro
Browse files Browse the repository at this point in the history
  • Loading branch information
nfarabullini committed Jan 10, 2025
1 parent 45df53f commit 04bce82
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ def test_time_step_flags(
assert linit == (at_initial_timestep and (jstep_init == 0))


@pytest.mark.embedded_skip
@pytest.mark.datatest
@pytest.mark.parametrize("istep_init, istep_exit, at_initial_timestep", [(1, 1, True)])
@pytest.mark.parametrize(
Expand Down Expand Up @@ -498,6 +499,7 @@ def test_nonhydro_predictor_step(
)


@pytest.mark.embedded_skip
@pytest.mark.datatest
@pytest.mark.parametrize("istep_init, istep_exit, at_initial_timestep", [(2, 2, True)])
@pytest.mark.parametrize(
Expand Down Expand Up @@ -702,6 +704,7 @@ def test_nonhydro_corrector_step(
)


@pytest.mark.embedded_skip
@pytest.mark.datatest
@pytest.mark.parametrize(
"istep_init, jstep_init, istep_exit, jstep_exit, at_initial_timestep", [(1, 0, 2, 0, True)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ def test_verify_velocity_init_against_regular_savepoint(
)


@pytest.mark.embedded_skip
@pytest.mark.datatest
@pytest.mark.parametrize("istep_init, istep_exit", [(1, 1)])
@pytest.mark.parametrize(
Expand Down Expand Up @@ -312,6 +313,7 @@ def test_velocity_predictor_step(
)


@pytest.mark.embedded_skip
@pytest.mark.datatest
@pytest.mark.parametrize("istep_init, istep_exit", [(2, 2)])
@pytest.mark.parametrize(
Expand Down
2 changes: 1 addition & 1 deletion model/common/tests/grid_tests/test_geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def test_compute_inverse_edge_length(backend, grid_savepoint, grid_file, experim
],
)
# stencil from geomtery factory does not get compute in the second case, i.e. only regional experiment fields are outputted
# hence if runnin global alone, it does verify but with teh additional of regional it does not
# hence if running global alone, it does verify but with teh additional of regional it does not
@pytest.mark.datatest
def test_compute_dual_edge_length(backend, grid_savepoint, grid_file, experiment, rtol):
grid_geometry = grid_utils.get_grid_geometry(backend, experiment, grid_file)
Expand Down

0 comments on commit 04bce82

Please sign in to comment.