class documentation
class MinimalReporter(Reporter): (source)
Constructor: MinimalReporter(stream, tbformat, realtime, publisher)
A minimalist reporter that prints only a summary of the test result, in the form of (timeTaken, #tests, #tests, #errors, #failures, #skips).
Method | _print |
Don't print a detailed summary of errors. We only care about the counts. |
Method | _print |
Print out a one-line summary of the form: '%(runtime) %(number_of_tests) %(number_of_tests) %(num_errors) %(num_failures) %(num_skips)' |
Inherited from Reporter
:
Method | __init__ |
Undocumented |
Method | add |
Called when a test raises an error. If realtime is set, then it prints the error to the stream. |
Method | add |
Called when a test fails. If realtime is set, then it prints the error to the stream. |
Method | cleanup |
Undocumented |
Method | done |
Summarize the result of the test run. |
Method | start |
Called when a test begins to run. Records the time when it was first called and resets the warning cache. |
Method | up |
Undocumented |
Instance Variable | realtime |
Undocumented |
Instance Variable | tbformat |
Undocumented |
Method | _format |
Undocumented |
Method | _get |
Return a formatted count of tests status results. |
Method | _group |
Group tests together based on their results. |
Method | _observe |
Observe warning events and write them to self._stream. |
Method | _print |
Undocumented |
Method | _print |
Print a group of errors to the stream. |
Method | _print |
Undocumented |
Method | _trim |
Trim frames to remove internal paths. |
Method | _write |
Safely write to the reporter's stream. |
Method | _writeln |
Safely write a line to the reporter's stream. Newline is appended to the format string. |
Class Variable | _double |
Undocumented |
Class Variable | _separator |
Undocumented |
Instance Variable | _publisher |
The log publisher which will be observed for warning events. |
Instance Variable | _start |
The time when the first test was started. It defaults to None , which means that no test was actually launched. |
Instance Variable | _stream |
Undocumented |
Instance Variable | _warning |
A set of tuples of warning message (file, line, text, category) which have already been written to the output stream during the currently executing test. This is used to avoid writing duplicates of the same warning to the output stream. |
Inherited from TestResult
(via Reporter
):
Method | __repr__ |
Undocumented |
Method | add |
Report that the given test failed, and was expected to do so. |
Method | add |
Report that the given test was skipped. |
Method | add |
Report that the given test succeeded. |
Method | add |
Report that the given test succeeded against expectations. |
Method | stop |
This must be called after the given test is completed. |
Method | was |
Report whether or not this test suite was successful or not. |
Class Variable | __test__ |
Undocumented |
Instance Variable | expected |
Undocumented |
Instance Variable | skips |
Undocumented |
Instance Variable | successes |
count the number of successes achieved by the test run. |
Instance Variable | unexpected |
Undocumented |
Method | _get |
Convert a sys.exc_info()-style tuple to a Failure , if necessary. |
Method | _get |
Undocumented |
Constant | _DEFAULT |
Undocumented |
Instance Variable | _last |
The duration of the current test run. It defaults to None , which means that the test was skipped. |
Instance Variable | _test |
Undocumented |
Instance Variable | _timings |
Undocumented |