如何指定运行哪种生菜方式?
在使用python莴苣测试框架时,我经常跑到这种情况,一个场景失败然后我想放大到这个场景来修复这个场景
我们可以指定在特征文件中运行哪个生菜场景吗?
答案 0 :(得分:13)
您可以使用标签进行所需的测试。例如:
Scenario: Set off time in free time slot
Given I click first free time slot
And I choose menu item "Off"
And I enter time that is in free interval
When I click button "Ok"
Then I see offtime time slot with title that matches with saved interval
@wip
Scenario: Set free time on off time
Given I click last off time slot
And I choose menu item "Set working"
And I enter time that is in last off interval
When I click button "Ok"
Then I see freetime time slot with title that matches with saved interval
然后当你运行生菜时,只需使用
./ manage.py harvest -t wip
它只会运行那些标有 @wip 标签的方案,在我的情况下 wip 用于正在进行的工作
如果它没有django而只是生菜,那么使用
生菜-t wip
答案 1 :(得分:4)
lettuce xxx.feature -s 1,2,3