-
Bug
-
Resolution: Duplicate
-
Minor
-
Win7/10 x64, nunit 0.2, Jenkins 2.60, nunit3 3.6.1.0
How to reproduce from pipeline:
pipeline {
agent none
stages{
stage('Build') {
agent { label "Test" }
steps {
nunit failIfNoResults: true, testResultsPattern: '*.xml'
} // steps
} // stage
} // stages
} // pipeline
Drop attached TestResult.xml into %workspace% directory.
Current output: ERROR: Could not read the XSL XML file. Please report this issue to the plugin author
Expected output: File TestResult.xml has no test inside.
- duplicates
-
JENKINS-29290 Inaccurate failure message for case where XML file exists, but contains no results
- Resolved