diff options
Diffstat (limited to 'vars/utils.groovy')
-rw-r--r-- | vars/utils.groovy | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vars/utils.groovy b/vars/utils.groovy index c37ea21..eacba36 100644 --- a/vars/utils.groovy +++ b/vars/utils.groovy @@ -443,6 +443,11 @@ def run(configs, concurrent = true) { // root of the workspace, the XUnitBuilder report // ingestion will fail. report_exists = sh(script: "test -e *.xml", returnStatus: true) + def thresh_summary = "failedUnstableThresh: ${myconfig.failedUnstableThresh}\n" + + "failedFailureThresh: ${myconfig.failedFailureThresh}\n" + + "skippedUnstableThresh: ${myconfig.skippedUnstableThresh}\n" + + "skippedFailureThresh: ${myconfig.skippedFailureThresh}" + println(thresh_summary) if (report_exists == 0) { step([$class: 'XUnitBuilder', thresholds: [ |