Commit b6c3df7c authored by Jérome Perrin's avatar Jérome Perrin

ERP5TypeFunctionalTestCase: use inline style to mark failures

This was using a class, but it's not supported by gadget_html_viewer
parent a3437c62
......@@ -383,6 +383,9 @@ class FunctionalTestRunner:
test_table = tr[1].xpath('.//table')[0]
status = tr.attrib.get('class')
if 'status_failed' in status:
# XXX replace status_failed classes by an inline style supported by gadget_html_viewer
for test_tr in test_table.xpath('.//tr[contains(@class, "status_failed")]'):
test_tr.set('style', 'background-color: red;')
if etree.tostring(test_table).find("expected failure") != -1:
expected_failure_amount += 1
else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment