Skip to content
Snippets Groups Projects
Commit 32060ac8 authored by John Derek Chapman's avatar John Derek Chapman Committed by Atlas Nightlybuild
Browse files

Merge branch 'cherry-pick-fix-runTrigCI' into '21.3'

Cherry-pick from master: Fix summary ordering in runTrigCI.py

See merge request atlas/athena!31856

(cherry picked from commit 6189bab4)

bd5b6e09 Fix summary ordering in runTrigCI.py
parent 3021fba2
No related branches found
No related tags found
22 merge requests!46457Draft: Adding the tools to run over data,!46454Draft: Adding the tools to be able to run over data,!45045WIP: Include another condition for hit merging in FCS_StepInfoSD.cxx,!45043Merge branch 'Update-DAOD_IDNCB' into '21.2',!44869Draft: Update to candidate store,!4217921.9-first_steps-InDetTrackingGeometryXML,!42171Add LAr cell DQ plots to UPC stream,!40342WIP: ATR-22546 - add missing trigger to MC16a,!39162Draft: Insert BCM' support,!38765Bis78 cabling,!37483Fix in monitoring of Pixel FE errors,!36893Fix size of RPC active region in BIS78 and strip material,!3645821.9: Improving material map description (ATLITKSW-127),!36293WIP pixel updates,!34993KF-input adding jXERHO to the AOD outputs,!34864LH rings in front ot HR rigs,!34763Fix L1_4jJ15.0ETA25 item definition (ATR-21261),!3473421.0 fix dq servers,!33996WIP: Correct MM zpositions,!33148Merge 21.3.20 and 21.3.21 into 21.9,!32366Merge 21.0.111 into 21.3,!31916Sweeping !31856 from 21.3 to 21.0. Cherry-pick from master: Fix summary ordering in runTrigCI.py
Pipeline #1551694 passed
......@@ -11,6 +11,8 @@ import logging
import argparse
import subprocess
import errno
from six import iteritems
from collections import OrderedDict
from TrigValTools.TrigARTUtils import find_scripts, remember_cwd
......@@ -83,7 +85,7 @@ def main():
format='========== %(levelname)-8s %(message)s',
level=logging.DEBUG if args.verbose else logging.INFO)
results = {}
results = OrderedDict()
max_name_len = 0
for script in args.scripts:
logging.debug('PROCESSING SCRIPT %s', script)
......@@ -115,7 +117,7 @@ def main():
logging.info('RESULTS SUMMARY:')
logging.info('='*(max_name_len+11))
final_code = 0
for script, result in results.iteritems():
for script, result in iteritems(results):
logging.info('| %s : %4d |', '{:{width}s}'.format(script, width=max_name_len), result)
if abs(result) > final_code:
final_code = abs(result)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment