summaryrefslogtreecommitdiffstats
path: root/controller/share
diff options
context:
space:
mode:
Diffstat (limited to 'controller/share')
-rw-r--r--controller/share/dtf-controller/ansible/playbooks/fedora.yml2
-rw-r--r--controller/share/dtf-controller/results-stats-templates/html.tmpl4
2 files changed, 4 insertions, 2 deletions
diff --git a/controller/share/dtf-controller/ansible/playbooks/fedora.yml b/controller/share/dtf-controller/ansible/playbooks/fedora.yml
index 7c62f61..1d49671 100644
--- a/controller/share/dtf-controller/ansible/playbooks/fedora.yml
+++ b/controller/share/dtf-controller/ansible/playbooks/fedora.yml
@@ -44,7 +44,7 @@
- shell: cd /root && tar -xf {{ opt_testsuite_name }}.tar.gz
- - shell: cd /root/{{ opt_testsuite_name }}&& ./run &>/var/tmp/dtf-run.overview
+ - shell: cd /root/{{ opt_testsuite_name }}&& ./run --force &>/var/tmp/dtf-run.overview
register: test_result
ignore_errors: yes
diff --git a/controller/share/dtf-controller/results-stats-templates/html.tmpl b/controller/share/dtf-controller/results-stats-templates/html.tmpl
index 8a09ad7..af06322 100644
--- a/controller/share/dtf-controller/results-stats-templates/html.tmpl
+++ b/controller/share/dtf-controller/results-stats-templates/html.tmpl
@@ -18,7 +18,9 @@
</tr>
</thead><tbody>
: for $results -> $result {
- : if ($result.exit_status) {
+ : if ($result.exit_status == 0) {
+ <tr class="success">
+ : } elsif ($result.exit_status == 2) {
<tr class="danger">
: } else {
<tr>