MCPcopy Create free account
hub / github.com/pytest-dev/pytest-bdd / pytest_bdd_step_error

Function pytest_bdd_step_error

src/pytest_bdd/plugin.py:97–106  ·  view source on GitHub ↗
(
    request: FixtureRequest,
    feature: Feature,
    scenario: Scenario,
    step: Step,
    step_func: Callable[..., Any],
    step_func_args: dict,
    exception: Exception,
)

Source from the content-addressed store, hash-verified

95
96@pytest.hookimpl(tryfirst=True)
97def 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)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…