class documentation

A wrapper for a reporter that causes the reporter to stop after unsuccessful tests.

Method addError Record that a test has raised an unexpected exception.
Method addFailure Record that a test has failed with the given failure.
Instance Variable shouldStop A boolean indicating that this reporter would like the test run to stop.

Inherited from TestResultDecorator:

Instance Variable _originalReporter The wrapped instance of reporter.
def addError(self, *args, **kwargs): (source)

Record that a test has raised an unexpected exception.

Parameters
*argsUndocumented
testThe test that has raised an error.
errorThe error that the test raised. It will either be a three-tuple in the style of sys.exc_info() or a Failure object.
**kwargsUndocumented
def addFailure(self, *args, **kwargs): (source)

Record that a test has failed with the given failure.

Parameters
*argsUndocumented
testThe test that has failed.
failureThe failure that the test failed with. It will either be a three-tuple in the style of sys.exc_info() or a Failure object.
**kwargsUndocumented
shouldStop: bool = (source)

A boolean indicating that this reporter would like the test run to stop.