scipy_doctest.impl.DebugDTRunner

class scipy_doctest.impl.DebugDTRunner(checker=None, verbose=None, optionflags=None, config=None)

Doctest runner which raises an exception on the first error.

Almost verbatim copy of doctest.DebugRunner.

__init__(checker=None, verbose=None, optionflags=None, config=None)

Create a new test runner.

Optional keyword arg checker is the OutputChecker that should be used to compare the expected outputs and actual outputs of doctest examples.

Optional keyword arg ‘verbose’ prints lots of stuff if true, only failures if false; by default, it’s true iff ‘-v’ is in sys.argv.

Optional argument optionflags can be used to control how the test runner compares expected output to actual output, and how it displays failures. See the documentation for testmod for more information.

Methods

__init__([checker, verbose, optionflags, config])

Create a new test runner.

get_history()

Return a dict with names of items which were run.

merge(other)

report_failure(out, test, example, got)

Report that the given example failed.

report_start(out, test, example)

Report that the test runner is about to process the given example.

report_success(out, test, example, got)

Report that the given example ran successfully.

report_unexpected_exception(out, test, ...)

Report that the given example raised an unexpected exception.

run(test[, compileflags, out, clear_globs])

Run the examples in test, and display the results using the writer function out.

summarize([verbose])

Print a summary of all the test cases that have been run by this DocTestRunner, and return a tuple (f, t), where f is the total number of failed examples, and t is the total number of tried examples.

Attributes

DIVIDER