%inherit file="base.html"/>
${subject}
% if user:
- User: @${user}
% endif
% if build_url:
- Build: ${build_url}
% endif
% if branch_name:
- Branch name: ${branch_name}
% endif
% if git_sha:
- Git sha: ${git_sha}
% endif
% if vehicle_name:
- Vehicle name: ${vehicle_name}
% endif
% if logs_url:
- Logs: ${logs_url}
% endif
- Test setup: https://docs.google.com/document/d/1J4mWG4yKsmN-tEqwDTCuN7filhTmSuIKYJt41kiZcaI/edit
% if failure_reasons:
Failure Reasons
% for reason in failure_reasons:
- ${reason}
% endfor
% endif
% if failures:
Failures
% for failure in failures:
-
${failure['owner']}: ${failure['diagnostic_name']} ${failure['hardware_id']}
${failure['severity']} (${failure['instance_count']}): ${failure['message']}
% endfor
% endif
<%
other_diagnostics = [
('Quarantined Failures', quarantined_failures),
('Expected Failures', expected_failures),
('Warnings', warnings),
('Okay', ok),
]
%>
% for name, diagnostics in other_diagnostics:
% if diagnostics:
${name}
% for diagnostic in diagnostics:
-
${diagnostic['diagnostic_name']} ${diagnostic['hardware_id']}
${diagnostic['severity']} (${diagnostic['instance_count']}): ${diagnostic['message']}
% endfor
% endif
% endfor