Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
TimSVector committed Oct 6, 2024
1 parent 0ad12cb commit 20b1fae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/resources/scripts/vcast_exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@

import cobertura
import generate_lcov
from create_index_html import create_index_html

try:
import generate_results
Expand Down Expand Up @@ -151,9 +150,9 @@ def __init__(self, args):
self.reportsName += "_" + self.environment

if self.useLevelEnv:
self.build_log_name = "build" + self.reportsName + ".log"
self.build_log_name = self.reportsName + "_build.log"
else:
self.build_log_name = "build" + self.mpName + ".log"
self.build_log_name = self.mpName + "_build.log"

self.manageWait = ManageWait(self.verbose, "", 30, 1, self.FullMP, self.ci)

Expand Down Expand Up @@ -198,7 +197,8 @@ def generateIndexHtml(self):
report = report.replace(prj_dir,"")
htmlReportList.append(report)

create_index_html(htmlReportList)
from create_index_html import create_index_html
create_index_html(self.FullMP)

def runJunitMetrics(self):
print("Creating JUnit Metrics")
Expand Down

0 comments on commit 20b1fae

Please sign in to comment.