We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_crash_array_in_namespace
1 parent 59e4eef commit 3a447dfCopy full SHA for 3a447df
test/cli/performance_test.py
@@ -2,6 +2,8 @@
2
# python -m pytest test-other.py
3
4
import os
5
+import sys
6
+
7
import pytest
8
9
from testutils import cppcheck
@@ -219,6 +221,7 @@ def test_slow_many_scopes(tmpdir):
219
221
}""")
220
222
cppcheck([filename]) # should not take more than ~1 second
223
224
+@pytest.mark.skipif(sys.platform == 'darwin', reason='GitHub macOS runners are too slow')
225
@pytest.mark.timeout(20)
226
def test_crash_array_in_namespace(tmpdir):
227
# 12847
0 commit comments