Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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