0

我有使用 jacoco 插件的 gradle 项目

plugins{

    id 'jacoco'
    id 'org.sonarqube' version '3.0'

}

test{

    exclude 'xx'

}

jacocoTestReport{

    dependsOn test
    reports{
        xml.enabled true
        csv.enabled false
        html.enabled true
    }
}

plugins.withType(JacocoPlugin){

    tasks["test"].finalizedBy 'jacocoTestReport'

}

现在我的本地我可以在默认位置报告/jacoco/test/html/index.html 看到测试覆盖率报告

我应该输入任何其他信息吗?

4

0 回答 0