Skip to content

Commit 36319b3

Browse files
authored
triage_version.py: suppress checkersReport for >= 2.13 (danmar#5858)
1 parent c1da431 commit 36319b3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tools/triage_py/triage_version.py

+2
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,8 @@ def sort_commit_hashes(commits):
154154
else:
155155
# TODO: re-add inconclusive: {callstack}: ({severity}{inconclusive:, inconclusive}) {message
156156
cmd.append('--template={callstack}: ({severity}) {message} [{id}]')
157+
if Version(version) >= Version('2.13'):
158+
cmd.append('--suppress=checkersReport')
157159
# TODO: how to pass additional options?
158160
if args.perf:
159161
cmd.append('--error-exitcode=0')

0 commit comments

Comments
 (0)