Jenkins JUnit Test Result Report plugin states that the JUnit xml file is not found? Jenkins JUnit Test Result Report plugin states that the JUnit xml file is not found? jenkins jenkins

Jenkins JUnit Test Result Report plugin states that the JUnit xml file is not found?


Jenkins looks for the path from the workspace root. Ensure that the given path is correct or use wildcards to look in multiple locations. Try using **/reports/TEST-*.xmlAre you sure the reports folder is right under the workspace? Verify manually if the test result files are indeed present in the location given in the path.


For my Android project which has multiple Gradle product flavors I used the following path for Test report XMLs:

**/build/test-results/**/TEST-*.xml

JUnit plugin