Skip to content
Snippets Groups Projects
Commit 4ea4ec46 authored by Rosen Matev's avatar Rosen Matev :sunny:
Browse files

Merge branch 'dcraik-lumi-rounding-fix' into 'master'

Update test_lumi to make the output more useful when things break

See merge request !254
parents 3c6d351d 30c3d7ee
No related branches found
No related tags found
1 merge request!254Update test_lumi to make the output more useful when things break
Pipeline #5719891 passed
......@@ -137,15 +137,13 @@ while True:
if not newSummary:
print("LumiSummary new TES location not found")
error = True
break
continue
for (name, value) in summary.extraInfo().items():
if newSummary.info(name, -1) != value:
print("Lumi counter " + name + " differs")
print("changed from ", value, " to ", newSummary.info(name, -1))
error = True
if error:
break
if error:
exit("Test failed") # exit with a non-zero code
exit("Test failed - see output") # exit with a non-zero code
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