SonarQube Coverage for Branch
问题 Is it possible to get code coverage details for non-master branches in SonarQube? The only two tabs I see for other branches are Issues and Code . I am running the same Gradle JaCoCo/Sonar commands for each branch: ./gradlew report sonarqube -Dsonar.branch.name=${BITBUCKET_BRANCH} -Dsonar.organization=${SONARQUBE_ORG} -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=${SONARQUBE_KEY} I am using PowerMockito so I need the class instrumentation done by the report task. We are using Java,