我正在将我的 azure 管道转换为 YAML 管道。当我触发构建时,它在单元测试步骤中失败并给出如下错误
[错误]vstest.console 进程在 90 秒后无法连接到 testhost 进程。这可能是由于机器速度慢,请设置环境变量 VSTEST_CONNECTION_TIMEOUT 以增加超时。
我找不到在任何地方添加 VSTEST_CONNECTION_TIMEOUT 值的方法。你能帮我解决这个问题吗?
这是我正在使用的示例 .yml
- task: VSTest@2
displayName: 'Test'
inputs:
testAssemblyVer2: '**\bin\**\Tests.dll'
testFiltercriteria: 'TestCategory=Unit'
runSettingsFile: XYZ.Tests/codecoverage.runsettings
codeCoverageEnabled: true
platform: '$(BuildPlatform)'
configuration: '$(BuildConfiguration)'
diagnosticsEnabled: true