From df73f503a3654c0bb3c9dbf8a9fca72f451b603d Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Wed, 28 Aug 2013 15:41:14 -0500 Subject: [PATCH] Add run name to first line of email. --- teuthology/suite.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/teuthology/suite.py b/teuthology/suite.py index 1a3e13b229..bd69268744 100644 --- a/teuthology/suite.py +++ b/teuthology/suite.py @@ -397,7 +397,7 @@ def get_jobs(archive_dir): email_templates = { 'body_templ': dedent("""\ - Test Run + Test Run: {name} NOTE: Apologies for links inside the Inktank firewall; we are working to make them public. ================================================================= logs: {log_root} @@ -518,6 +518,7 @@ def build_email_body(name, archive_dir, timeout): ) body = email_templates['body_templ'].format( + name=name, log_root=get_http_log_path(archive_dir, ''), fail_count=len(failed), hung_count=len(hung), -- 2.39.5