]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
Add run name to first line of email. 60/head
authorZack Cerza <zack@cerza.org>
Wed, 28 Aug 2013 20:41:14 +0000 (15:41 -0500)
committerZack Cerza <zack@cerza.org>
Wed, 28 Aug 2013 20:41:14 +0000 (15:41 -0500)
teuthology/suite.py

index 1a3e13b229fa58203319aaec6315dd1c28afede5..bd6926874467c727dda6cff3487694b3ca1970c4 100644 (file)
@@ -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),