如何为Microsoft Visual Studio Team创建JaCoCo xml报告和xml摘要?

时间:2017-09-12 13:51:55

标签: android gradle android-gradle azure-devops jacoco

我需要在Microsoft Visual Studio Team中打开JaCoCo覆盖率报告。

我可以看到表格:

enter image description here

所以,我需要摘要文件。我该如何创建呢? 我是否需要在本地以xml格式创建报告?

我正在尝试创建此报告,但我遇到了问题 我的项目使用Gradle,所以我在yaml

中添加了它
gradle.build

apply plugin: "jacoco"

但我无法看到jacoco的任何报道 我可以用Android studio创建一个完整的jacoco报告,但它是唯一的html。

如何为Microsoft Visual Studio Team创建摘要?

1 个答案:

答案 0 :(得分:0)

对于Jacoco配置,您可以在此处参考代码示例:Gradle Example。我测试过它,它可以正确生成XML报告。

然后您可以运行构建并从VSTS发布代码覆盖率结果: enter image description here

VSTS中发布的结果: enter image description here