VSTS测试代理没有运行测试构建作为X64位进程,"没有匹配测试存在"正在显示错误

时间:2017-01-31 12:01:41

标签: azure testing azure-pipelines-release-pipeline

我们在Azure VM上运行这些测试作为VSTS pipline的一部分,测试代理成功部署,但运行功能测试任务失败。我们正在构建包含测试解决方案的整个解决方案,如x64位

1 个答案:

答案 0 :(得分:0)

参考这些步骤并检查结果:

  1. 创建一个runsettings文件(xml文件)以指定TargetPlatform
  2. 代码:

    <?xml version="1.0" encoding="utf-8" ?> 
    <RunSettings> 
      <RunConfiguration>
        <ResultsDirectory>.\TestResults</ResultsDirectory>
        <TargetPlatform>x64</TargetPlatform>
      </RunConfiguration>
     </RunSettings>
    
    1. 将其添加到源代码管理
    2. 为“运行功能测试”步骤指定该文件。
    3. enter image description here

      更新

      这些是我的构建步骤:

      1. Visual Studio Build
      2. enter image description here

        1. Windows机器文件复制
        2. enter image description here

          1. Visual Studio测试代理部署
          2. 运行功能测试
          3. enter image description here