如何让 TeamCity 排除 nunit 测试类别?
我正在使用 TeamCity VisualStudio sln 配置来驱动我的 CI 构建。 它运行我所有的 NUnit 测试 - 这一切都很好,但我不希望 TeamCity 使用 [Category("DatabaseTests")] 属性运行我的任何测试(因为它们命中了实际的数据库)。
在要排除的类别下的 NUnit 配置中,我简单地放置了 DatabaseTests 但它不起作用。 我有什么遗漏的吗? 有没有办法让我看到 teamcity 发送给 nunit 跑步者的内容?
I am using the TeamCity VisualStudio sln configuration to drive my CI build. It runs all my NUnit tests - which is all well and great but I don't want TeamCity running any of my tests with the [Category("DatabaseTests")] attribute (since they hit an actual database).
In the NUnit configuration under categories to exclude I put simply DatabaseTests but its not working. Is there something I'm missing? Is there a way that I can see what teamcity is sending to the nunit runner?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以打开DEBUG模式:
...我从他们的文档中得到的。 然后你就可以看到发生了什么。
You can turn on DEBUG mode:
...which I got from their docs. And then you can see what is happening.