cruisecontrol.net电子邮件

时间:2009-07-08 21:59:23

标签: cruisecontrol.net

在CruiseControl.net上有一个名为“NUnit Details”的链接。当您点击它时,它会提供很多详细信息,包括与此类似的摘要部分...

概要 测试组件:2 执行测试:56 通行证:54 失败:2 忽略:2

我希望每次构建时都会通过电子邮件发送给我。任何提示都会很棒。

1 个答案:

答案 0 :(得分:1)

电子邮件的格式在 ccnet.exe.config ccservice.exe.config 中配置(在C:\ Program Files \ CruiseControl.NET中) \ server)如果你正在运行ccnet服务。

我认为您要包含的文件是 tests.xml ,因为其中包含nunit测试结果的详细列表。修改配置文件的xslFiles部分以包含此样式表。它看起来像这样。

<!-- Specifies the stylesheets that are used to transform the build results when using the EmailPublisher -->
<xslFiles>
    <file name="xsl\header.xsl"/>
    <file name="xsl\compile.xsl"/>
    ...
    <!-- add tests.xsl here... --> 
    <file name="xsl\tests.xsl"/>
</xslFiles>