From 3a447df05060102825fc2983ea20e3e66939d7b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Tue, 8 Oct 2024 17:53:01 +0200 Subject: [PATCH] refs #12983 - test/cli/performance_test.py: skip `test_crash_array_in_namespace` on macOS for now (#6887) the `macos-*` runners are just too slow and cause multiple failures a day now --- test/cli/performance_test.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/cli/performance_test.py b/test/cli/performance_test.py index f2eecff570c..61367d7a0d0 100644 --- a/test/cli/performance_test.py +++ b/test/cli/performance_test.py @@ -2,6 +2,8 @@ # python -m pytest test-other.py import os +import sys + import pytest from testutils import cppcheck @@ -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