【问题标题】:vsts xunit vstest.console.exe failed with return code: 1vsts xunit vstest.console.exe 失败,返回码:1
【发布时间】:2025-12-27 22:05:06
【问题描述】:

我在通过 VSTS 构建(私有托管代理)运行 XUnit 测试时遇到问题,仅当测试失败时:

2018-08-23T09:44:00.1110631Z ##[warning]Vstest failed with error. Check logs for failures. There might be failed tests.
2018-08-23T09:44:00.1111003Z ##[debug]Processed: ##vso[task.issue type=warning;]Vstest failed with error. Check logs for failures. There might be failed tests.
2018-08-23T09:44:00.1111532Z ##[debug]Agent.Version=2.138.6
2018-08-23T09:44:00.1111747Z ##[debug]Release.ReleaseUri=undefined
2018-08-23T09:44:00.1111982Z ##[debug]Release.ReleaseId=undefined
2018-08-23T09:44:00.1112201Z ##[debug]Build.BuildUri=vstfs:///Build/Build/3003
2018-08-23T09:44:00.1112402Z ##[debug]Build.Buildid=3003
2018-08-23T09:44:00.1112593Z ##[debug]Agent.Version=2.138.6
2018-08-23T09:44:00.1113027Z ##[debug]telemetry area: TestExecution feature: TestExecutionTask data: {"builduri":"vstfs:///Build/Build/3003","buildid":"3003","areacode":"ExecuteVsTest","result":"C:\\VSTSAgents\\AgentJ\\_work\\_tool\\VsTest\\15.8.0\\x64\\tools\\net451\\Common7\\IDE\\Extensions\\TestPlatform\\vstest.console.exe failed with return code: 1","tracepoint":1005,"isusererror":true}
2018-08-23T09:44:00.1379570Z ##[debug]Processed: ##vso[telemetry.publish area=TestExecution;feature=TestExecutionTask;]{"builduri":"vstfs:///Build/Build/3003","buildid":"3003","areacode":"ExecuteVsTest","result":"C:\\VSTSAgents\\AgentJ\\_work\\_tool\\VsTest\\15.8.0\\x64\\tools\\net451\\Common7\\IDE\\Extensions\\TestPlatform\\vstest.console.exe failed with return code: 1","tracepoint":1005,"isusererror":true}
2018-08-23T09:44:00.1386171Z ##[error]Error: C:\VSTSAgents\AgentJ\_work\_tool\VsTest\15.8.0\x64\tools\net451\Common7\IDE\Extensions\TestPlatform\vstest.console.exe failed with return code: 1

第一行是一个警告,告诉有一个测试失败 => 没关系 最后一行是导致任务停止构建链的错误。

我不知道它为什么这样做以及如何避免这种行为。我希望能够在这一步之后继续我的构建链,我不认为检查“继续出错”是一个解决方案。

任务配置:

  • 类型:Visual Studio 测试
  • 使用以下方法选择测试:测试程序集
  • 测试平台版本:由工具安装程序安装(我有一个 Visual Studio 测试平台安装程序任务)
  • 单独运行测试:检查
  • 代码覆盖已启用:选中(但构建报告中未显示任何内容)
  • 继续出错:未选中

【问题讨论】:

    标签: .net asp.net-web-api frameworks azure-devops xunit


    【解决方案1】:

    如果您不想在 VsTest 任务中选中“出错时继续”选项,请在下一个任务的“控制选项”选项卡中选择“即使之前的任务失败,除非构建被取消”选项,如下图所示。

    【讨论】: