是否可以将自定义代码覆盖率添加到 TFS 2015
Is it possible to add custom code coverage to TFS 2015
我们使用 TFS 2015 vNext 作为构建系统。但是,我们使用 JetBrains 的 dotCover 作为我们的代码覆盖工具。我们不使用内置 TFS 代码覆盖工具的原因是这需要企业许可证,而我们只有专业许可证(并且不能升级)。
是否可以在 TFS 2015 的构建结果页面上显示来自不同代码覆盖率工具的代码覆盖率(如下面的屏幕截图所示)?
可能与此问题重复Display OpenCover results in TFS 2015 build Summary。您的要求可以在TFS2015 update2.
后实现
If you want to display your custom result in the build result summary,
seems you will have to write your own extensions. Help link:
Overview of extensions for Visual Studio Team Services
Base for this were a lot of examples provided by MS on github:
To get a first feeling what places on your TFS Web Portal can be
extended/customized you can download and install this extension
Contributions Guide from the Visual Studio Marketplace.
我们使用 TFS 2015 vNext 作为构建系统。但是,我们使用 JetBrains 的 dotCover 作为我们的代码覆盖工具。我们不使用内置 TFS 代码覆盖工具的原因是这需要企业许可证,而我们只有专业许可证(并且不能升级)。
是否可以在 TFS 2015 的构建结果页面上显示来自不同代码覆盖率工具的代码覆盖率(如下面的屏幕截图所示)?
可能与此问题重复Display OpenCover results in TFS 2015 build Summary。您的要求可以在TFS2015 update2.
后实现If you want to display your custom result in the build result summary, seems you will have to write your own extensions. Help link: Overview of extensions for Visual Studio Team Services
Base for this were a lot of examples provided by MS on github:
To get a first feeling what places on your TFS Web Portal can be extended/customized you can download and install this extension Contributions Guide from the Visual Studio Marketplace.