Finalize the step report as failed.
(
request: FixtureRequest,
feature: Feature,
scenario: Scenario,
step: Step,
step_func: Callable[..., Any],
step_func_args: dict,
exception: Exception,
)
| 162 | |
| 163 | |
| 164 | def step_error( |
| 165 | request: FixtureRequest, |
| 166 | feature: Feature, |
| 167 | scenario: Scenario, |
| 168 | step: Step, |
| 169 | step_func: Callable[..., Any], |
| 170 | step_func_args: dict, |
| 171 | exception: Exception, |
| 172 | ) -> None: |
| 173 | """Finalize the step report as failed.""" |
| 174 | request.node.__scenario_report__.fail() |
| 175 | |
| 176 | |
| 177 | def before_step( |
nothing calls this directly
no test coverage detected
searching dependent graphs…