Example #1
0
 def _author_emails_for_test(self, flaky_test):
     test_path = path_for_layout_test(flaky_test)
     commit_infos = self._tool.checkout().recent_commit_infos_for_files(
         [test_path])
     # This ignores authors which are not committers because we don't have their bugzilla_email.
     return set([
         commit_info.author().bugzilla_email()
         for commit_info in commit_infos if commit_info.author()
     ])
 def _author_emails_for_test(self, flaky_test):
     test_path = path_for_layout_test(flaky_test)
     commit_infos = self._tool.checkout().recent_commit_infos_for_files([test_path])
     # This ignores authors which are not committers because we don't have their bugzilla_email.
     return set([commit_info.author().bugzilla_email() for commit_info in commit_infos if commit_info.author()])