在使用 Visual Studio Team Services VSTS 的 Visual Studio 测试中包含或排除测试程序集的正确语法是什么

What is the correct syntax to include or exlude test assemblies in Visual Studio Tests with Visual Studio Team Services VSTS

我的解决方案中有 2 个测试项目。我想将其中之一(使用 Selenium 测试)排除在作为持续集成周期一部分的 Visual Studio 测试之外。

生成的dll名称为:

Ta-Tend.UITests.dll

选项 "Test assembly"(形成测试执行选项)是:

*test*.dll; -:\obj**; -***UITest*.dll

我填什么,测试就执行,而我需要排除什么。 我无法在任何地方找到该字段的完整语法定义。只是其中的一部分,但它们不起作用。

改用此代码:

*test*.dll;-:**\obj\**;-:**\*UITest*.dll

如果 Ta-Tend.UITests.dll 文件在子文件夹中,使用

**\*test*.dll;-:**\obj\**;-:**\*UITest*.dll