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.
1 parent 75c854b commit 2bd6dd9Copy full SHA for 2bd6dd9
scripts/run_static_analysis.py
@@ -43,7 +43,7 @@ def _get_changed_files(build_path: str) -> set[str]:
43
44
files = set([line for line in result.stdout.splitlines() if
45
(line.endswith('.cpp') or line.endswith('.h')) and not line.startswith(
46
- 'tests') and not line.startswith('samples') and not line.startswith("third_party") and not line.startswith(build_path)])
+ 'tests') and not line.startswith('samples') and not line.startswith("third_party") and not line.startswith(build_path) and line.startswith("src/misc")])
47
return files & commands
48
49
0 commit comments