我有一个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记录中启用与静音选项有关的测试失败事件?