diff options
author | Lovett, Trevor <trevor.lovett@att.com> | 2019-06-06 16:43:16 -0500 |
---|---|---|
committer | Trevor Lovett <trevor.lovett@att.com> | 2019-06-06 21:47:00 +0000 |
commit | 2f5bed51e4b120e2efffe6a6298c24270e862ad4 (patch) | |
tree | 4b443eb69c94664ce6d6266d1764c1e69128a85f /ice_validator/tests/report.html.jinja2 | |
parent | eb94fa9a5d08f532cb7cdd89253e795ba4bc48ef (diff) |
[VVP] Improved readability of reports
- Removed resolution steps from all reports
- Added error number to all reports
- Only show base file names
- Add auto-filter to excel reports
- Shift test ID to right-most column of Excel
- Removed raw output from Excel and CSV
Change-Id: Ic022b0a14d53fbeab591def631b8743228e1d5c0
Issue-ID: VVP-184
Signed-off-by: Lovett, Trevor <trevor.lovett@att.com>
Diffstat (limited to 'ice_validator/tests/report.html.jinja2')
-rw-r--r-- | ice_validator/tests/report.html.jinja2 | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/ice_validator/tests/report.html.jinja2 b/ice_validator/tests/report.html.jinja2 index 65f0edb..82928cf 100644 --- a/ice_validator/tests/report.html.jinja2 +++ b/ice_validator/tests/report.html.jinja2 @@ -65,7 +65,7 @@ table-layout: fixed; } .fileNames { - width: 25%; + width: 20%; word-wrap: break-word; word-break: break-all; white-space: normal; @@ -147,7 +147,6 @@ <th>File(s)</th> <th>Error Message</th> <th>Requirement(s)</th> - <th>Resolution Steps</th> </tr> </thead> <tbody> @@ -166,9 +165,6 @@ <td> {{ failure.requirements }} </td> - <td> - {{ failure.resolution_steps }} - </td> </tr> {% endfor %} </tbody> @@ -207,10 +203,9 @@ fixedHeader: true, pageLength: 50, columns: [ - {width: "25%", className: "fileLinks"}, - {width: "25%", className: "errorMessage"}, - {width: "25%", className: "requirements"}, - {width: "25%", className: "resolutionSteps"}, + {width: "20%", className: "fileLinks"}, + {width: "40%", className: "errorMessage"}, + {width: "40%", className: "requirements"}, ] }); }); |