From 1aafe59898cdab753d19d9dbc0d0c43246f65484 Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Wed, 10 Dec 2014 08:52:28 -0600 Subject: [PATCH] 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 --- teuthology/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/run.py b/teuthology/run.py index aa5f58d1ca..27f0c91510 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) -- 2.39.5