fix console output

This commit is contained in:
Eugene Konkov 2016-09-02 16:15:01 +03:00
parent 322e5031bd
commit ae1edc4197

View File

@ -88,7 +88,7 @@ def main(args):
(name, ext) = os.path.splitext(case) (name, ext) = os.path.splitext(case)
report_testcase = et.Element("testcase", attrib = {"name": name}) report_testcase = et.Element("testcase", attrib = {"name": name})
print "{0:70}: ".format(name), print "{0:70}".format(name + ": "),
if not args.zookeeper and 'zookeeper' in name: if not args.zookeeper and 'zookeeper' in name:
report_testcase.append(et.Element("skipped", attrib = {"message": "no zookeeper"})) report_testcase.append(et.Element("skipped", attrib = {"message": "no zookeeper"}))
@ -193,10 +193,10 @@ def main(args):
args.output.write(et.tostring(report, encoding = "UTF-8", xml_declaration=True, pretty_print=True)) args.output.write(et.tostring(report, encoding = "UTF-8", xml_declaration=True, pretty_print=True))
if failures_total > 0: if failures_total > 0:
print("{COLOR_FAIL}Having {0} errors!{COLOR_RESET}".format(failures_total, **COLORS)) print("\n{COLOR_FAIL}Having {0} errors!{COLOR_RESET}".format(failures_total, **COLORS))
sys.exit(1) sys.exit(1)
else: else:
print("{COLOR_OK}All tests passed.{COLOR_RESET}".format(**COLORS)) print("\n{COLOR_OK}All tests passed.{COLOR_RESET}".format(**COLORS))
sys.exit(0) sys.exit(0)