Skip to content

Commit

Permalink
Sanitise: Switch disabled OMNI tests to skip
Browse files Browse the repository at this point in the history
  • Loading branch information
mlange05 committed Nov 8, 2024
1 parent accd34e commit 2a5283d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions loki/transformations/sanitise/tests/test_associates.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@


@pytest.mark.parametrize('frontend', available_frontends(
xfail=[(OMNI, 'OMNI does not handle missing type definitions')]
skip=[(OMNI, 'OMNI does not handle missing type definitions')]
))
def test_transform_associates_simple(frontend):
"""
Expand Down Expand Up @@ -58,7 +58,7 @@ def test_transform_associates_simple(frontend):


@pytest.mark.parametrize('frontend', available_frontends(
xfail=[(OMNI, 'OMNI does not handle missing type definitions')]
skip=[(OMNI, 'OMNI does not handle missing type definitions')]
))
def test_transform_associates_nested(frontend):
"""
Expand Down Expand Up @@ -98,7 +98,7 @@ def test_transform_associates_nested(frontend):


@pytest.mark.parametrize('frontend', available_frontends(
xfail=[(OMNI, 'OMNI does not handle missing type definitions')]
skip=[(OMNI, 'OMNI does not handle missing type definitions')]
))
def test_transform_associates_array_call(frontend):
"""
Expand Down Expand Up @@ -148,7 +148,7 @@ def test_transform_associates_array_call(frontend):


@pytest.mark.parametrize('frontend', available_frontends(
xfail=[(OMNI, 'OMNI does not handle missing type definitions')]
skip=[(OMNI, 'OMNI does not handle missing type definitions')]
))
def test_transform_associates_nested_conditional(frontend):
"""
Expand Down Expand Up @@ -205,7 +205,7 @@ def test_transform_associates_nested_conditional(frontend):


@pytest.mark.parametrize('frontend', available_frontends(
xfail=[(OMNI, 'OMNI does not handle missing type definitions')]
skip=[(OMNI, 'OMNI does not handle missing type definitions')]
))
def test_transform_associates_partial_body(frontend):
"""
Expand Down Expand Up @@ -252,7 +252,7 @@ def test_transform_associates_partial_body(frontend):


@pytest.mark.parametrize('frontend', available_frontends(
xfail=[(OMNI, 'OMNI does not handle missing type definitions')]
skip=[(OMNI, 'OMNI does not handle missing type definitions')]
))
def test_transform_associates_start_depth(frontend):
"""
Expand Down Expand Up @@ -301,7 +301,7 @@ def test_transform_associates_start_depth(frontend):


@pytest.mark.parametrize('frontend', available_frontends(
xfail=[(OMNI, 'OMNI does not handle missing type definitions')]
skip=[(OMNI, 'OMNI does not handle missing type definitions')]
))
def test_merge_associates_nested(frontend):
"""
Expand Down

0 comments on commit 2a5283d

Please sign in to comment.