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.
我搜索了互联网,发现一些参考资料说 Gallio 和 NbUnit 可以作为构建过程的一部分在 TeamCity 中运行。
我正在针对解决方案文件运行我的构建,并且需要 TeamCity 来运行解决方案中的所有测试。
是否有在任何地方的 TeamCity 中设置 Gallio 和 NbUnit 的分步流程?
您可以通过 MSBuild 执行此操作
<!-- Runs Tests --> <Gallio IgnoreFailures="true" Files="@(TestFiles)"> <Output TaskParameter="ExitCode" PropertyName="ExitCode" /> </Gallio> <Error Text="Tests execution failed" Condition=" '$(ExitCode)' != 0 And '@(TestFiles)' != '' " />