human_requests.autotest_report¶
Attributes¶
Exceptions¶
Unspecified run-time error. |
|
Unspecified run-time error. |
|
Unspecified run-time error. |
|
Unspecified run-time error. |
Classes¶
Functions¶
|
|
|
|
|
|
|
Module Contents¶
- exception AutotestCrash(data: AutotestCrashData)[source]¶
Unspecified run-time error.
- exception AutotestMethodCrash(data: AutotestCrashData)[source]¶
Unspecified run-time error.
- exception AutotestHookCrash(data: AutotestCrashData)[source]¶
Unspecified run-time error.
- exception AutotestParamsCrash(data: AutotestCrashData)[source]¶
Unspecified run-time error.
- build_autotest_method_crash_report(
- *,
- api: object,
- func: AutotestFunction,
- error: BaseException,
- context_lines: int = 3,
- trace_limit: int = 3,
- truncation_context_lines: int = 3,
- build_autotest_method_output_error_report(
- *,
- api: object,
- func: AutotestFunction,
- error: BaseException,
- context_lines: int = 3,
- trace_limit: int = 3,
- truncation_context_lines: int = 3,
- build_autotest_hook_crash_report(
- *,
- api: object,
- hook: AutotestFunction,
- error: BaseException,
- context_lines: int = 3,
- trace_limit: int = 3,
- truncation_context_lines: int = 3,
- build_autotest_params_crash_report(
- *,
- api: object,
- params_provider: AutotestFunction,
- error: BaseException,
- context_lines: int = 3,
- trace_limit: int = 3,
- truncation_context_lines: int = 3,
- raise_autotest_method_crash(
- *,
- api: object,
- func: AutotestFunction,
- error: BaseException,
- source_func: AutotestFunction | None = None,
- detail_message: str | None = None,
- trace_limit: int = 3,
- truncation_context_lines: int = 3,
- raise_autotest_method_output_error(
- *,
- api: object,
- func: AutotestFunction,
- error: BaseException,
- source_func: AutotestFunction | None = None,
- detail_message: str | None = None,
- trace_limit: int = 3,
- truncation_context_lines: int = 3,
- raise_autotest_hook_crash(
- *,
- api: object,
- hook: AutotestFunction,
- error: BaseException,
- summary_message: str = 'Autotest hook crashed',
- subject_label: str = 'Hook',
- subject_value: str | None = None,
- source_func: AutotestFunction | None = None,
- detail_message: str | None = None,
- trace_limit: int = 3,
- truncation_context_lines: int = 3,
- raise_autotest_params_crash(
- *,
- api: object,
- params_provider: AutotestFunction,
- error: BaseException,
- summary_message: str = 'Autotest params preparation crashed',
- subject_label: str = 'Params',
- subject_value: str | None = None,
- source_func: AutotestFunction | None = None,
- detail_message: str | None = None,
- trace_limit: int = 3,
- truncation_context_lines: int = 3,