I am able to generate jacoco reports in my Android project locally. When I run the task on Bamboo, it works as well. Now I would like to display the coverage results in the task, is it possible? I saw posts and question using SonarQube, but it seems like a lot of work for something so trivial
Asked
Active
Viewed 2,744 times
1 Answers
3
You can attach report as an artifact of build - see https://jira.atlassian.com/browse/BAM-9179

Godin
- 9,801
- 2
- 39
- 76
-
it works, I managed to display nice reports using `location=app/build/reports/jacoco/jacocoTestProdReleaseUnitTestReport/html` and `copy pattern=**/*.*` – Guillaume Feb 26 '18 at 12:12