View the last Jenkins job reports
After running tests with Jenkins, you can see your results at the last build in your job.
At the end of the execution, get all the reports related to the execution in Jenkins as a table
How to use:
For builds that use XCUITest and Espresso build step, there is no change needed.
When running a jar or Git project using Jenkins we need to add a capability:
DesiredCapabilities dc = new DesiredCapabilities();
String project = System.getenv("JOB_BASE_NAME"); // Jenkins version 2.X
if (project == null){
project = System.getenv("JOB_NAME"); // Jenkins version 1.X
}
String buildNumber = System.getenv("BUILD_NUMBER");
dc.setCapability("jenkins", project + "-" + buildNumber);