Skip to content

Commit

Permalink
disable orchestration tests (1)
Browse files Browse the repository at this point in the history
  • Loading branch information
edopao committed Jan 10, 2025
1 parent 042f7dd commit 78d81ce
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ def test_run_diffusion_single_step(
pytest.skip(f"running backend = '{backend.name}': orchestration only on dace backends")
if orchestration and helpers.is_dace(backend):
# TODO(edopao): remove once https://github.com/GridTools/gt4py/pull/1742 is merged
pytest.xfail(f"dace orchestration not supported yet in GTIR")
pytest.xfail("dace orchestration not supported yet in GTIR")
grid = get_grid_for_experiment(experiment, backend)
cell_geometry = get_cell_geometry_for_experiment(experiment, backend)
edge_geometry = get_edge_geometry_for_experiment(experiment, backend)
Expand Down Expand Up @@ -505,8 +505,11 @@ def test_run_diffusion_multiple_steps(
backend,
icon_grid,
):
if "dace" not in backend.name.lower():
raise pytest.skip("This test is only executed for DaCe backends.")
if not helpers.is_dace(backend):
pytest.skip(f"running backend = '{backend.name}': orchestration only on dace backends")
if helpers.is_dace(backend):
# TODO(edopao): remove once https://github.com/GridTools/gt4py/pull/1742 is merged
pytest.xfail("dace orchestration not supported yet in GTIR")
######################################################################
# Diffusion initialization
######################################################################
Expand Down Expand Up @@ -646,7 +649,7 @@ def test_run_diffusion_initial_step(
pytest.skip(f"running backend = '{backend.name}': orchestration only on dace backends")
if orchestration and helpers.is_dace(backend):
# TODO(edopao): remove once https://github.com/GridTools/gt4py/pull/1742 is merged
pytest.xfail(f"dace orchestration not supported yet in GTIR")
pytest.xfail("dace orchestration not supported yet in GTIR")
grid = get_grid_for_experiment(experiment, backend)
cell_geometry = get_cell_geometry_for_experiment(experiment, backend)
edge_geometry = get_edge_geometry_for_experiment(experiment, backend)
Expand Down

0 comments on commit 78d81ce

Please sign in to comment.