From: Andrew Schoen Date: Wed, 10 Dec 2014 14:52:28 +0000 (-0600) Subject: we need to use fake_ctx.summary when reporting the outcome of a run because it gets... X-Git-Tag: 1.1.0~1067^2~11^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F389%2Fhead;p=teuthology.git we need to use fake_ctx.summary when reporting the outcome of a run because it gets modified by the tasks Signed-off-by: Andrew Schoen --- diff --git a/teuthology/run.py b/teuthology/run.py index aa5f58d1..27f0c915 100644 --- a/teuthology/run.py +++ b/teuthology/run.py @@ -301,4 +301,4 @@ def main(args): run_tasks(tasks=config['tasks'], ctx=fake_ctx) finally: # print to stdout the results and possibly send an email on any errors - report_outcome(config, archive, args["summary"], fake_ctx) + report_outcome(config, archive, fake_ctx.summary, fake_ctx)