Lines Matching refs:reports
8 * failures, and will create a zip of the XML test reports for each test run, and copy them to
9 * dist/host-test-reports for consumption by TradeFed.
15 // If unit tests are run as part of the build, dist the test XML reports to host-test-reports/*.zip
24 def junitReport = task.reports.junitXml
26 // Create a zip file of the XML test reports
34 // Copy the test reports to dist/host-test-reports
37 dist.file zipTask.archivePath.path, "host-test-reports/${zipTask.archiveName}"
59 description = "Generate Jacoco coverage reports"
84 reports {
91 // Create a zip file of the HTML coverage reports
93 from jacocoTask.reports.html.destination
95 destinationDir = jacocoTask.reports.html.destination.parentFile
99 // Copy the coverage reports to dist/host-test-coverage
102 dist.file jacocoTask.reports.xml.destination.path, "host-test-coverage/${jacocoTask.name}.xml"