From 28a48740c79af8960de8e5e366c474f6b6d15de2 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Tue, 19 Sep 2017 23:34:16 +0800 Subject: [PATCH] ate: print output after tests --- ate/cli.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ate/cli.py b/ate/cli.py index d851b76a..e8247fd8 100644 --- a/ate/cli.py +++ b/ate/cli.py @@ -78,6 +78,9 @@ def main_ate(): if len(result.successes) != result.testsRun: subject = "FAILED" + for task in task_suite: + task.print_output() + flag_code = 0 if subject == "SUCCESS" else 1 if mailer and mailer.config_ready: mailer.send_mail(subject, results, flag_code)