From: Zack Cerza Date: Wed, 28 Aug 2013 20:41:14 +0000 (-0500) Subject: Add run name to first line of email. X-Git-Tag: 1.1.0~1924^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F60%2Fhead;p=teuthology.git Add run name to first line of email. --- diff --git a/teuthology/suite.py b/teuthology/suite.py index 1a3e13b22..bd6926874 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),