Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-53635

xunit step failure is not displayed

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: Minor Minor
    • xunit-plugin
    • None

      Same issue as described in https://issues.jenkins-ci.org/browse/JENKINS-47142, except, for xunit step, not archiveArtifacts step.

       

      The issue looks to be that the exception is swallowed here - https://github.com/jenkinsci/xunit-plugin/blob/master/src/main/java/org/jenkinsci/plugins/xunit/XUnitPublisher.java#L164 meaning that it's not able to be handled upstream.

      The result is that the stage shows as successful, but the build fails.

      A simple test case that reproduces the issue:

      node {
          stage('stage 1') {
              git 'https://github.com/dantheman213/java-hello-world-maven.git'
              sh 'mvn clean package'
              xunit testTimeMargin: '3000', thresholdMode: 1, thresholds: [failed(), passed(), skipped()], tools: [JUnit(deleteOutputFiles: true, failIfNotNew: true, pattern: 'target/failsafe-reports/*.xml', skipNoTestFiles: false, stopProcessingIfError: true)]
          }
          stage('stage 2') {
              echo 'hello from stage 2'
          }
      } 
      

       

            owood Owen Wood
            owood Owen Wood
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: