We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents eabda8c + 07cc236 commit 3050872Copy full SHA for 3050872
junit_xml/__init__.py
@@ -68,8 +68,8 @@ def build_xml_doc(self):
68
test_suite_attributes['name'] = str(self.name)
69
test_suite_attributes['failures'] = str(len([c for c in self.test_cases if c.is_failure()]))
70
test_suite_attributes['errors'] = str(len([c for c in self.test_cases if c.is_error()]))
71
- test_suite_attributes['skipped'] = str(len([c for c in self.test_cases if c.is_skipped()]))
72
- test_suite_attributes['time'] = str(sum(c.elapsed_sec for c in self.test_cases if c.elapsed_sec))
+ test_suite_attributes['skipped'] = str(len([c for c in self.test_cases if c.is_skipped()]))
+ test_suite_attributes['time'] = str(sum(c.elapsed_sec for c in self.test_cases if c.elapsed_sec))
73
test_suite_attributes['tests'] = str(len(self.test_cases))
74
75
if self.hostname:
0 commit comments