如何使用命令行在 TFS 2015 中创建 VS 负载测试版本

How to create VS Load test build in TFS 2015 using command line

我需要 运行 Visual Studio 使用命令行从 TFS 加载测试。我有以下设置 - 1.Visual Studio 2015 企业版 2.TFS 2015 更新 3 3.Developer VS2015 命令提示符

我可以通过打开开发人员命令提示符并使用命令行 /TestContainer:Loadtest.loadtest 在本地 运行。 但是,我无法在 TFS 构建中执行相同的操作。

你能告诉我在命令行步骤的 "Tool" 和 "Argument" 字段中应该输入什么吗?

Local VS也在使用MSTest.exe command到运行的Load测试。

要运行 vNext 构建中的负载测试,您还应该使用command line 任务并在构建代理中调用MSTest.exe 命令。

  • 工具:您可以指定MSTest.exe命令的完全限定路径
  • 参数:指定要传递给工具的参数。如 /testcontainer:[ file name ]

下面是来自VNext的快照供您参考:

注意:您需要使用 Test Controller/Test Agents 2013 Update 5 到 运行 根据 this document.