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.
如果这已经在另一个地方得到了回答,我很抱歉,但是在谷歌搜索一个小时后我找不到任何东西。
我在 Ubuntu 服务器上设置了 Jenkins CI 环境。现在它在 mono 的帮助下成功编译了 c# 代码。我希望它也能够运行 NUnit 测试。
最好的方法是什么?有没有一种方法不包括 Jenkins 的从属 Windows 版本,也许使用 nunit-console?(如果在运行该命令后,我可以通过 Jenkins 的 Web 界面查看结果,那就太好了)
似乎我稍微修补了一下。
我在 Build 下配置了 jenkins 作业并添加了一个“执行 shell”命令
nunit-console "$WORKSPACE/path/to/Tests.dll"
然后作为后期构建事件,我选择了生成的 xml(使用 jenkins 的 NUnit 插件)并将其全部显示在 Web 界面中。
需要注意的是,这是一个非常简单的项目,所以我不知道这是否都可以在具有更高级测试等的单声道下工作。