Minor fix

This commit is contained in:
Dion Moult
2020-01-17 14:13:11 +11:00
parent 09e4fe56f4
commit 368f76b713
+1 -1
View File
@@ -29,7 +29,7 @@ def generate_report(args):
for file in os.listdir(args.junit_directory):
if not file.endswith('.xml'):
continue
root = ET.parse('junit/{}'.format(file)).getroot()
root = ET.parse('{}{}'.format(args.junit_directory, file)).getroot()
data = {
'report_name': root.get('name'),
'testcases': []