Skip to content

Commit

Permalink
Frontend: Disable regex-timeout test on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
mlange05 committed Aug 9, 2024
1 parent bce73e9 commit 8dbb177
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions loki/frontend/tests/test_frontends.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

# pylint: disable=too-many-lines

import platform
from pathlib import Path
from time import perf_counter
import numpy as np
Expand Down Expand Up @@ -946,6 +947,9 @@ def test_make_complete_sanitize(frontend):
assert directives[1].text == '#endif'


@pytest.mark.skipif(platform.system() == 'Darwin',
reason='Timeout utility test sporadically fails on MacOS CI runners.'
)
@pytest.mark.usefixtures('reset_regex_frontend_timeout')
def test_regex_timeout():
"""
Expand Down

0 comments on commit 8dbb177

Please sign in to comment.