Skip to content

Commit 3a447df

Browse files
authored
refs #12983 - test/cli/performance_test.py: skip test_crash_array_in_namespace on macOS for now (danmar#6887)
the `macos-*` runners are just too slow and cause multiple failures a day now
1 parent 59e4eef commit 3a447df

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/cli/performance_test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
# python -m pytest test-other.py
33

44
import os
5+
import sys
6+
57
import pytest
68

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

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

0 commit comments

Comments
 (0)