| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <head> | 2 <head> |
| 3 <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> | 3 <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> |
| 4 <title>Flaky Tests</title> | 4 <title>Flaky Tests</title> |
| 5 <meta charset="utf-8"> | 5 <meta charset="utf-8"> |
| 6 <link rel="stylesheet" href="/common.css"> | 6 <link rel="stylesheet" href="/common.css"> |
| 7 <style type="text/css"> | 7 <style type="text/css"> |
| 8 .truncated { | 8 .truncated { |
| 9 max-width: 500px; | 9 max-width: 500px; |
| 10 white-space: nowrap; | 10 white-space: nowrap; |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 </tr> | 145 </tr> |
| 146 </thead> | 146 </thead> |
| 147 <tbody> | 147 <tbody> |
| 148 {% for master_flake_analysis in master_flake_analyses %} | 148 {% for master_flake_analysis in master_flake_analyses %} |
| 149 <tr> | 149 <tr> |
| 150 <td>{{loop.index}}</td> | 150 <td>{{loop.index}}</td> |
| 151 <td>{{ master_flake_analysis.request_time or '' }}</td> | 151 <td>{{ master_flake_analysis.request_time or '' }}</td> |
| 152 <td> | 152 <td> |
| 153 {{ master_flake_analysis.master_name }}, {{ master_flake_analysis.buil
der_name }}, {{ master_flake_analysis.build_number }} | 153 {{ master_flake_analysis.master_name }}, {{ master_flake_analysis.buil
der_name }}, {{ master_flake_analysis.build_number }} |
| 154 </td> | 154 </td> |
| 155 <td class="truncated">{{ master_flake_analysis.step_name }}</td> | 155 <td class="truncated" title="{{ master_flake_analysis.step_name }}">{{ m
aster_flake_analysis.step_name }}</td> |
| 156 <td class="truncated">{{ master_flake_analysis.test_name }}</td> | 156 <td class="truncated" title="{{ master_flake_analysis.test_name }}">{{ m
aster_flake_analysis.test_name }}</td> |
| 157 <td>{{ master_flake_analysis.status }}</td> | 157 <td>{{ master_flake_analysis.status }}</td> |
| 158 <td> | 158 <td> |
| 159 {% if master_flake_analysis.suspected_build %} | 159 {% if master_flake_analysis.suspected_build %} |
| 160 <a href="https://build.chromium.org/p/{{ master_flake_analysis.maste
r_name }}/builders/{{ master_flake_analysis.builder_name }}/builds/{{ master_fla
ke_analysis.suspected_build }}" target="_blank">{{ master_flake_analysis.suspect
ed_build }} | 160 <a href="https://build.chromium.org/p/{{ master_flake_analysis.maste
r_name }}/builders/{{ master_flake_analysis.builder_name }}/builds/{{ master_fla
ke_analysis.suspected_build }}" target="_blank">{{ master_flake_analysis.suspect
ed_build }} |
| 161 </a> | 161 </a> |
| 162 {% endif %} | 162 {% endif %} |
| 163 <td> | 163 <td> |
| 164 <a href="/waterfall/check-flake?master_name={{ master_flake_analysis.m
aster_name }}&builder_name={{ master_flake_analysis.builder_name }}&build_number
={{master_flake_analysis.build_number}}&step_name={{ master_flake_analysis.step_
name }}&test_name={{ master_flake_analysis.test_name }}">Link</a> | 164 <a href="/waterfall/check-flake?master_name={{ master_flake_analysis.m
aster_name }}&builder_name={{ master_flake_analysis.builder_name }}&build_number
={{master_flake_analysis.build_number}}&step_name={{ master_flake_analysis.step_
name }}&test_name={{ master_flake_analysis.test_name }}">Link</a> |
| 165 </td> | 165 </td> |
| 166 <td>{{ master_flake_analysis.result_status }}</td> | 166 <td>{{ master_flake_analysis.result_status }}</td> |
| 167 </tr> | 167 </tr> |
| 168 {% endfor %} | 168 {% endfor %} |
| 169 </tbody> | 169 </tbody> |
| 170 </table> | 170 </table> |
| 171 </body> | 171 </body> |
| OLD | NEW |