Skip to content

Commit

Permalink
refs #12983 - test/cli/performance_test.py: skip `test_crash_array_in…
Browse files Browse the repository at this point in the history
…_namespace` on macOS for now (#6887)

the `macos-*` runners are just too slow and cause multiple failures a
day now
  • Loading branch information
firewave authored Oct 8, 2024
1 parent 59e4eef commit 3a447df
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/cli/performance_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
# python -m pytest test-other.py

import os
import sys

import pytest

from testutils import cppcheck
Expand Down Expand Up @@ -219,6 +221,7 @@ def test_slow_many_scopes(tmpdir):
}""")
cppcheck([filename]) # should not take more than ~1 second

@pytest.mark.skipif(sys.platform == 'darwin', reason='GitHub macOS runners are too slow')
@pytest.mark.timeout(20)
def test_crash_array_in_namespace(tmpdir):
# 12847
Expand Down

0 comments on commit 3a447df

Please sign in to comment.