Home | History | Annotate | Download | only in Scripts

Lines Matching refs:totals

274         totals = re.findall(r"([0-9]+) passed, ([0-9]+) failed, ([0-9]+) skipped", txt)
275 totals = reduce(lambda x, y: (int(x[0]) + int(y[0]), int(x[1]) + int(y[1]), int(x[2]) + int(y[2])), totals)
276 totals = map(str, totals)
277 totals = totals[0] + " passed, " + totals[1] + " failed, " + totals[2] + " skipped"
280 txt += "\n**" + ("TOTALS: " + totals).center(66) + '**'
323 txt = re.sub(r"\n(Totals:)([0-9', a-z]*)",
327 totals = re.findall(r"([0-9]+) passed, ([0-9]+) failed, ([0-9]+) skipped", txt)
328 totals = reduce(lambda x, y: (int(x[0]) + int(y[0]), int(x[1]) + int(y[1]), int(x[2]) + int(y[2])), totals)
329 totals = map(str, totals)
330 totals = totals[0] + " passed, " + totals[1] + " failed, " + totals[2] + " skipped."
372 <h1>Qt's autotests results</h1>%(totals)s<br>
383 </html>""" % {"totals": totals, "results": txt}