Skip to content

Commit

Permalink
Merge branch '91021__adding_more_error_checking' of github.com:jenkin…
Browse files Browse the repository at this point in the history
…sci/vectorcast-execution-plugin into vce064
  • Loading branch information
nbelliot committed Oct 21, 2020
2 parents 2067ac0 + 6d9e5e9 commit d442ede
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/scripts/generate-results.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ def buildReports(FullManageProjectName = None, level = None, envName = None, gen
lines = open(file,"r").readlines()
for line in lines:
if "failures" in line:
failed_count = int(line.split("\"")[5])
failed_count += int(line.split("\"")[5])
break
except:
print (" *Problem parsing file " + file + " to parse for unit testcase failures")
Expand Down

0 comments on commit d442ede

Please sign in to comment.