Skip to content

Commit 49024af

Browse files
committed
adding more debug info
1 parent 25a2457 commit 49024af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vcast_exec.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ def sendToBitBucket(self):
371371
send_cobertura_to_bitbucket.run(
372372
filename = fname,
373373
minimum_passing_coverage = 0.8,
374-
verbose = self.verbose)
374+
verbose = True) #self.verbose)
375375

376376
for html_dir in [".", self.html_base_dir, "rebuild_reports"]:
377377
for html in glob.glob(os.path.join(html_dir, "*.html")) \
@@ -380,9 +380,9 @@ def sendToBitBucket(self):
380380
dest = os.path.join("reports/html",html)
381381
try:
382382
shutil.copyfile(html, dest)
383-
print("Copying {} --> {}".format(html.dest))
383+
print("Copying {} --> {}".format(html,dest))
384384
except Exception as e:
385-
print("Error copying {} --> {}".format(html.dest))
385+
print("Error copying {} --> {}".format(html,dest))
386386
print(e)
387387

388388
def runSonarQubeMetrics(self):

0 commit comments

Comments
 (0)