Searched refs:author_emails (Results 1 – 1 of 1) sorted by relevance
/external/webkit/Tools/Scripts/webkitpy/tool/bot/ |
D | flakytestreporter.py | 88 def _create_bug_for_flaky_test(self, flaky_test, author_emails, latest_flake_message): argument 91 'authors': join_with_separators(sorted(author_emails)), 115 cc=",".join(author_emails), 119 def _optional_author_string(self, author_emails): argument 120 if not author_emails: 122 heading_string = plural('author') if len(author_emails) > 1 else 'author' 123 authors_string = join_with_separators(sorted(author_emails)) 185 author_emails = self._author_emails_for_test(flaky_test) 188 … flake_bug_id = self._create_bug_for_flaky_test(flaky_test, author_emails, latest_flake_message) 197 …essage += "%s bug %s%s\n" % (flaky_test, flake_bug_id, self._optional_author_string(author_emails))
|