gpt4 book ai didi

jenkins - 将 opencover xml 输出转换为 ncover xml

转载 作者:行者123 更新时间:2023-12-02 00:13:02 25 4
gpt4 key购买 nike

我需要能够将 opencover 覆盖率结果导入 Jenkins,以便随时间拉取覆盖率趋势数据。看起来最好的方法是找到一种方法将 opencover xml 格式转换为 ncover 格式,然后使用 NCover 插件导入结果。是否存在将 opencover 转换为 ncover 的现有 xslt,或将进行转换的开源工具?我已经搜索过了,但我一无所获。

谢谢

最佳答案

以下 XSLT 在 OpenCover wiki 上可用这可能会让您入门。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="yes" standalone="yes"/>
<xsl:template match="/CoverageSession/Modules">
<coverage>
<xsl:for-each select="Module[not(@skippedDueTo)]">
<module name="{ModuleName}">
<xsl:for-each select="Classes/Class">
<xsl:if test="count(Methods/Method) &gt; 0">
<class name="{FullName}">
<xsl:variable name="className" select="FullName" />
<xsl:for-each select="Methods/Method">
<method class="{$className}">
<xsl:for-each select="SequencePoints/SequencePoint">
<seqpnt visitcount="{@vc}" />
</xsl:for-each>
</method>
</xsl:for-each>
</class>
</xsl:if>
</xsl:for-each>
</module>
</xsl:for-each>
</coverage>
</xsl:template>
</xsl:stylesheet>

关于jenkins - 将 opencover xml 输出转换为 ncover xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14592274/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com