Classes | |
class | _Colors |
class | AugmentedResult |
class | CaseResult |
class | CoverageResult |
class | TerminalResult |
Functions | |
def | _traceback_string (type, value, trace) |
def | jenkins_junit_xml (result) |
def | summary (result) |
|
private |
Generate a descriptive string of a Python exception traceback. Args: type (class): The type of the exception. value (Exception): The value of the exception. trace (traceback): Traceback of the exception. Returns: str: Formatted exception descriptive string.
Definition at line 330 of file _result.py.
def tests._result.jenkins_junit_xml | ( | result | ) |
An XML tree object that when written is recognizable by Jenkins. Args: result (AugmentedResult): The result object to get the junit xml output of. Returns: ElementTree.ElementTree: The XML tree.
Definition at line 414 of file _result.py.
def tests._result.summary | ( | result | ) |
A summary string of a result object. Args: result (AugmentedResult): The result object to get the summary of. Returns: str: The summary string.
Definition at line 346 of file _result.py.