将生菜与 TeamCity 集成
是否可以将生菜与 TeamCity 一起使用?
我知道可以使用unittest和nose,但由于lettuce不使用标准测试运行器,我无法使用 teamcity python测试运行程序。
如果我想保留 TeamCity,我应该使用另一个 BDD 测试框架吗?
Is it possible to use lettuce with TeamCity?
I know it is possible with unittest and nose but since lettuce does not use a standard test runner I cannot use the teamcity python test runner.
If I want to keep TeamCity, should I use another BDD testing framework?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用简单的命令行构建步骤以及像
lettuce --with-xunit --xunit-file=test_results.xml
这样的命令。因此,您将能够跟踪通过/失败的功能。You can use simple Command Line build step with command like this
lettuce --with-xunit --xunit-file=test_results.xml
. Thus you'll be able to track passing/failing features.