Skip to content

Commit c46f148

Browse files
committed
update to clean up output from the pipeline
1 parent 14f2911 commit c46f148

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

src/main/resources/scripts/baseJenkinsfile.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1122,7 +1122,7 @@ pipeline {
11221122
summaryText += "<hr style=\"height:5px;border-width:0;color:gray;background-color:gray\"> "
11231123
summaryText += readFile('coverage_diffs.html_tmp')
11241124

1125-
} else {
1125+
} else if (VC_useCoverageHistory && !VC_useCoveragePlugin) {
11261126
print "coverage_diffs.html_tmp missing"
11271127
}
11281128

src/main/resources/scripts/parallel_full_reports.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,6 @@ def __init__(self):
9797
max_licenses = self.getLicenseCount()
9898
max_envs = self.getEnvCount()
9999

100-
print([max_cpus, max_licenses, max_envs])
101-
print(type(max_cpus))
102-
print(type(max_licenses))
103-
print(type(max_envs))
104-
105100
self.max_concurrent = min(x for x in [max_cpus,max_licenses, max_envs] if x > 0)
106101

107102
print("Using licensing max = ", self.max_concurrent)

0 commit comments

Comments
 (0)