运行几秒钟后,TFS Build将被取消

时间:2017-03-14 18:33:07

标签: visual-studio tfs vstest

我有一个带有VSTest任务的TFS构建,它总是会在几秒钟后自动取消。

我下载了构建日志,但我收到了ZERO错误。

是否有任何条件可以在没有错误日志的情况下中止构建?

我使用配置了超时的TestSettings文件: enter image description here

还设置了TFS构建持续时间:

build config

但测试任务会在一分钟后取消:

enter image description here

1 个答案:

答案 0 :(得分:0)

我刚才发现了问题。 此测试在TestSettings文件中具有此配置:

  <DataCollectors>
    <DataCollector uri="datacollector://microsoft/HttpProxy/1.0" assemblyQualifiedName="Microsoft.VisualStudio.TraceCollector.HttpProxyCollector, Microsoft.VisualStudio.TraceCollector, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" friendlyName="ASP.NET Client Proxy for IntelliTrace and Test Impact">
    </DataCollector>   </DataCollectors>

从测试设置中删除它解决了这个问题。

我无法调查根本原因(为什么在没有任何错误消息的情况下使用此配置取消)