[IE TESTS] Fix Conformance report generation (#9577)

This commit is contained in:
Irina Efode 2022-01-11 17:21:17 +03:00 committed by GitHub
parent ab09135195
commit f96a5183fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -78,7 +78,7 @@ def merge_xmls(xml_paths: list):
logger.warning(f'Test counter is different in {op_result.tag} for {device.tag}'\
f'({total_tests_count_xml} vs {total_tests_count_xml})')
for attr_name in device_results.find(op_result.tag).attrib:
if attr_name == "passrate":
if attr_name == "passrate" or attr_name == "implemented":
continue
xml_value = int(op_result.attrib.get(attr_name))
device_results.find(current_op_res.tag).set(attr_name, str(xml_value))