1

我有一个 TeamCity Professional 6.5.1 服务器和几个代理,我的项目的一些集成测试正在其中运行。问题是将失败事件打印到日志中,但仅适用于非静音测试。以前我已经配置了 ant 任务以在某些测试失败时打印出消息

    <junit printsummary="on"
           haltonfailure="off"
           failureproperty="some-test-failed"
           errorproperty="some-test-failed"
           timeout="300000">
           ...
    </junit>

    <if>
        <equals arg1="${some-test-failed}" arg2="true" />
        <then>
            <echo level="error" message="Some test failed!" />
        </then>
    </if>

但这发生在没有任何静音意识的情况下,并且没有给出测试失败的具体名称。

是否可以在 TC 日志记录中启用有关静音选项的测试失败事件?

4

0 回答 0