Skip to content
Snippets Groups Projects
Commit edf6c7a7 authored by Christoph Hasse's avatar Christoph Hasse :cartwheel_tone1:
Browse files

add ignore of timing print outs to LHCbExclusions.py

parent 9589e1f7
No related branches found
No related tags found
No related merge requests found
Pipeline #3653437 passed
This commit is part of merge request !3430. Comments created here will be created in the context of that merge request.
......@@ -140,7 +140,12 @@ preprocessor = (
r'.*SUCCESS (Exceptions/Errors/Warnings/Infos Statistics :| #WARNINGS =| #ERRORS =|List of booked \dD histograms in directory).*'
) +
# TODO To be removed when GaudiAlgorithm is gone and thus this output line is no more present
SortGroupOfLines(r'CompareTracksTr.*DEBUG Changing \S* to \S*'))
SortGroupOfLines(r'CompareTracksTr.*DEBUG Changing \S* to \S*') +
RegexpReplacer( # normalize any timing prints
when="INFO",
orig=r'\d+\.*\d*(\s+(ns|us|ms|seconds|s|minutes|min)(\s+|\.|$))',
repl=r'n\1',
))
try:
from DDDB.Configuration import GIT_CONDDBS
......
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