Skip to content

Commit

Permalink
Disable StabilityTestDataPublisher (#634)
Browse files Browse the repository at this point in the history
  • Loading branch information
seanf committed Dec 15, 2017
1 parent 09de537 commit 3eb77e8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Jenkinsfile
Expand Up @@ -471,11 +471,12 @@ void integrationTests(String appserver) {

echo "Capturing JUnit results"
if (setJUnitPrefix(appserver, failsafeTestReports)) {
junit(testResults: "**/${failsafeTestReports}",
junit(testResults: "**/${failsafeTestReports}"
// NB: if this is enabled, make sure (a) max history in Jenkins
// Configuration is small (eg 3) or
// (b) https://issues.jenkins-ci.org/browse/JENKINS-33168 is fixed.
testDataPublishers: [[$class: 'StabilityTestDataPublisher']]
// Update: even with max=3 it can take many hours. Disabling for now.
// ,testDataPublishers: [[$class: 'StabilityTestDataPublisher']]
)
// Reduce workspace size
sh "git clean -fdx"
Expand Down

0 comments on commit 3eb77e8

Please sign in to comment.