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

Test Result Trend is broken

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: Major Major
    • xunit-plugin
    • None
    • Jenkins Version: 2.138.2

      The image that should show test results is broken.

      Howewer, test results are accessible and seem to be ok.

      Installed plugins and versions:

      installed_plugins.log

      Test project attached.

      test_project.tar.gz

      Sample pipeline:

      pipeline {
          agent {
              node {
                  label 'ubuntu14.04'   
              }
          }
          
          stages {
              stage("checkout") {
                  steps {
                      checkout scm
                  }
              }
              stage("build") {
                  steps {
                      sh "cmake ."
                      sh '/usr/bin/cmake --build . -- test ARGS="--no-compress-output -T Test"'
                      sh "ls -la  Testing/*"
                      xunit([CTest(deleteOutputFiles: true, failIfNotNew: true, pattern: 'Testing/*/Test.xml', skipNoTestFiles: false, stopProcessingIfError: true)])
                  }
              }
          }
      }
      

            nfalco Nikolas Falco
            kostyaripak Konstantin Ripak
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: