6

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

artkoenig
  • 7,117
  • 2
  • 40
  • 61
Guillaume
  • 2,912
  • 3
  • 35
  • 59

1 Answers1

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