Add run name to first line of email.

This commit is contained in:
Zack Cerza 2013-08-28 15:41:14 -05:00
parent 38a47ecef0
commit df73f503a3

View 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),