(
request: FixtureRequest,
feature: Feature,
scenario: Scenario,
step: Step,
step_func: Callable[..., Any],
step_func_args: dict,
exception: Exception,
)
| 95 | |
| 96 | @pytest.hookimpl(tryfirst=True) |
| 97 | def pytest_bdd_step_error( |
| 98 | request: FixtureRequest, |
| 99 | feature: Feature, |
| 100 | scenario: Scenario, |
| 101 | step: Step, |
| 102 | step_func: Callable[..., Any], |
| 103 | step_func_args: dict, |
| 104 | exception: Exception, |
| 105 | ) -> None: |
| 106 | reporting.step_error(request, feature, scenario, step, step_func, step_func_args, exception) |
| 107 | |
| 108 | |
| 109 | @pytest.hookimpl(tryfirst=True) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…