diff options
Diffstat (limited to 'utils/test/reporting/functest/template/index-status-tmpl.html')
-rw-r--r-- | utils/test/reporting/functest/template/index-status-tmpl.html | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/utils/test/reporting/functest/template/index-status-tmpl.html b/utils/test/reporting/functest/template/index-status-tmpl.html index 7a0656b74..89a1d1527 100644 --- a/utils/test/reporting/functest/template/index-status-tmpl.html +++ b/utils/test/reporting/functest/template/index-status-tmpl.html @@ -74,20 +74,25 @@ <table class="table"> <tr> {% for test in items[scenario] -%} - <th>{{test.getName() }}</th> + <th> + {% if test.getCriteria() > -1 -%} + {{test.getDbName() }} + {%- endif %} + {% if test.getTier() > 3 -%} + * + {%- endif %} + </th> {%- endfor %} </tr> <tr class="tr-weather-weather"> - {% for test in items[scenario] -%} - {% if test.isRunnable is sameas false -%} - <td>N.R</td> - {% elif test.getCriteria() > 2 -%} + {% for test in items[scenario] -%} + {% if test.getCriteria() > 2 -%} <td><img src="../../img/weather-clear.png"></td> {%- elif test.getCriteria() > 1 -%} <td><img src="../../img/weather-few-clouds.png"></td> {%- elif test.getCriteria() > 0 -%} <td><img src="../../img/weather-overcast.png"></td> - {%- else -%} + {%- elif test.getCriteria() > -1 -%} <td><img src="../../img/weather-storm.png"></td> {%- endif %} {%- endfor %} @@ -96,6 +101,7 @@ </div> </div> {%- endfor %} + *: not used for scenario validation </div> <div class="col-md-1"></div> </div> |