Commit c13c272a authored by Xiaowu Zhang's avatar Xiaowu Zhang

run-zelenium-test.py.in: skip undefined

parent 8850e5dc
......@@ -181,6 +181,8 @@ def main():
for tr in test_tbody:
# print etree.tostring(tr).split('\n')[0]
status = tr.attrib.get('class')
if status is None:
continue
if 'status_done' in status:
skip_count += 1
elif 'status_passed' in status:
......
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