実行するレタス シナリオを指定する方法
Pythonレタステストフレームワークを使用しているときに、このケースに頻繁に遭遇しました。1つのシナリオが失敗したため、このシナリオにズームインしてこのシナリオを修正したいと考えています
機能ファイルで実行するレタス シナリオを指定できますか?
目的のテストにタグを使用できます。例えば:
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 収穫 -t ワイプ
タグ@wipでマークされたシナリオのみを実行します。私の場合、wipは進行中の作業用です
ジャンゴがなくレタスだけの場合は、使用します
レタス・ワイプ
JohnWang によって指定されたドキュメントには、次のようなドキュメントがあります。
lettuce xxx.feature -s 1,2,3