【发布时间】:2021-07-27 12:17:51
【问题描述】:
我正在尝试实现功能场景大纲,类似于以下内容:
Feature: Scenario outlines
Scenario Outline: Outlined given, when, then
Given there are <start> cucumbers
Given there are <start> apples
When I eat <eat> cucumbers
When I eat <eat> apples
Then I should have <left_c> cucumbers
Then I should have <left_a> apples
Examples:
| start | eat | left_c | left_a |
| 12 | 5 | 4 | 7 |
这里I should have <left_c> cucumbers会失败,不考虑第二步就会停止执行。
即使pytest bdd中的某些步骤失败,有没有办法执行剩余的步骤?
【问题讨论】:
标签: python pytest bdd gherkin pytest-bdd