From 375e8a69aef8ce71be122abf581cb47d5747a3db Mon Sep 17 00:00:00 2001 From: Dariusz Kedzierski <dkedzierski@syncad.com> Date: Wed, 4 Nov 2020 20:21:45 +0100 Subject: [PATCH] Exit with exit code 2 if test time is above time threshold --- scripts/xml_report_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/xml_report_parser.py b/scripts/xml_report_parser.py index 524341249..f229e9fc8 100755 --- a/scripts/xml_report_parser.py +++ b/scripts/xml_report_parser.py @@ -101,5 +101,5 @@ if __name__ == "__main__": for entry in above_treshold: summary.add_row(entry) print(summary) - exit(1) + exit(2) exit(0) -- GitLab