[CONFORMANCE] Fix report gewneration in case of mixed reports: rel and abs (#16505)
This commit is contained in:
parent
c89da1aee2
commit
448654ea65
@ -101,6 +101,9 @@ def merge_xmls(xml_paths: list):
|
||||
continue
|
||||
xml_value = None
|
||||
if "relative_" in attr_name:
|
||||
value = op_result.attrib.get(attr_name)
|
||||
if value is None:
|
||||
continue
|
||||
xml_value = float(op_result.attrib.get(attr_name))
|
||||
else:
|
||||
xml_value = int(op_result.attrib.get(attr_name))
|
||||
|
Loading…
Reference in New Issue
Block a user