aboutsummaryrefslogtreecommitdiff
path: root/vars
diff options
context:
space:
mode:
authorMatt Rendina <mrendina@stsci.edu>2017-11-29 15:44:22 -0500
committerMatt Rendina <mrendina@stsci.edu>2017-11-29 15:44:22 -0500
commit7f44a8306f820a01b4ad6d9bc1df4e25fee7868d (patch)
tree2c343b3f9760121ecc3cf19de5f0fb9a49fd40fc /vars
parent84d3a21f81ac886f7be6aaa3feda1a3e2d14330c (diff)
downloadjscu_refactor-7f44a8306f820a01b4ad6d9bc1df4e25fee7868d.tar.gz
Test parameter insertion
Diffstat (limited to 'vars')
-rw-r--r--vars/utils.groovy9
1 files changed, 8 insertions, 1 deletions
diff --git a/vars/utils.groovy b/vars/utils.groovy
index eff3de2..56dff19 100644
--- a/vars/utils.groovy
+++ b/vars/utils.groovy
@@ -82,8 +82,15 @@ def concurrent(configs) {
// [$class: 'FailedThreshold', failureThreshold: '6']],
// tools: [[$class: 'JUnitType', pattern: '*.xml']]])
step([$class: 'XUnitBuilder',
- thresholds: [myconfig.thresholds],
+ thresholds: [
+ [$class: 'SkippedThreshold', unstableThreshold: "${myconfig.skippedUnstableThresh}"],
+ [$class: 'SkippedThreshold', failureThreshold: "${myconfig.skippedFailureThresh}"],
+ [$class: 'FailedThreshold', unstableThreshold: "${myconfig.failedUnstableThresh}"],
+ [$class: 'FailedThreshold', failureThreshold: "${myconfig.failedFailureThresh}"]],
tools: [[$class: 'JUnitType', pattern: '*.xml']]])
+ //step([$class: 'XUnitBuilder',
+ // thresholds: [myconfig.thresholds],
+ // tools: [[$class: 'JUnitType', pattern: '*.xml']]])
}
}
//} //end withEnv