CI 与 Hudson 和 Cucumber
我想将 Cucumber 与 Hudson CI 一起使用。是否可以在不使用 JRuby 的情况下在 hudson 内运行 Cucumber 功能? 如果是的话,您能提供一些关于如何设置 Hudson 的简单步骤吗?
谢谢。
I want to use Cucumber with Hudson CI. Is that possible to run cucumber features inside hudson without using JRuby?
If yes can you please provide some simple steps on how to setup the Hudson?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只要服务器上安装了 Cucumber,您就可以通过执行 Cucumber 作为构建步骤来测试任何应用程序。
请参阅https://github.com/cucumber/cucumber/wiki/Continously-Integration 使用 Hudson(现在称为 Jenkins)的示例。
As long as you have cucumber installed on the server, you can test any application by executing cucumber as a build step.
See https://github.com/cucumber/cucumber/wiki/Continuous-Integration for an example using Hudson (now called Jenkins).
安装 Jenkins 和 Rake 插件。
然后创建一个 Rakefile。这是一个仅运行带有 @jenkins 标记的 cukes 的示例
有一点需要注意。如果您在 Windows 中的 IE 中进行测试,请运行“services.msc”,找到 Jenkins 服务,然后选中允许其屏幕访问的选项。
Install Jenkins and the Rake plugin.
Then create a Rakefile. Here is an example that only runs cukes tagged with @jenkins
One thing to watch out for. If you are doing tests in IE in Windows then run 'services.msc', find the Jenkins service, and check the option to allow it screen access.