Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在运行 dotCover 作为我在 TeamCity 中的 MSTest 构建步骤的一部分。我已将 MSTest 配置为运行与 匹配的程序集文件**.Tests.dll,否则其他所有内容都具有默认设置。
**.Tests.dll
我不知道 dotCover 如何决定要跟踪哪些文件(我想知道),但我注意到很多第三方库和测试项目本身都出现在报告中 - 我想将其排除在外进行了分析和报告。我怎样才能做到这一点?
在 TeamCity 7 中,您可以为 dotCover 指定程序集过滤器。例如,您可以通过添加否定过滤器来排除引用的程序集:
-:TheAssembly.To.Ignore.*
这将排除名称开头的任何程序集TheAssembly.To.Ignore
TheAssembly.To.Ignore