Skip to content

Commit

Permalink
OFP: Disable OFP for regression tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mlange05 committed Jan 16, 2024
1 parent 7ace31a commit 071e9dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion transformations/tests/test_cloudsc.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from conftest import (
available_frontends, write_env_launch_script, local_loki_setup, local_loki_cleanup
)
from loki import execute, OMNI, HAVE_FP, HAVE_OMNI, warning
from loki import execute, OMNI, OFP, HAVE_FP, HAVE_OMNI, warning

pytestmark = pytest.mark.skipif('CLOUDSC_DIR' not in os.environ, reason='CLOUDSC_DIR not set')

Expand Down Expand Up @@ -48,6 +48,7 @@ def fixture_bundle_create(here, local_loki_bundle):

@pytest.mark.usefixtures('bundle_create')
@pytest.mark.parametrize('frontend', available_frontends(
xfail=[(OFP, 'Lack of elemental support makes C-transpilation impossible')],
skip=[(OMNI, 'OMNI needs FParser for parsing dependencies')] if not HAVE_FP else None
))
def test_cloudsc(here, frontend):
Expand Down

0 comments on commit 071e9dc

Please sign in to comment.