method: test.rest.RestReporter.print_summary

*Not documented*
    def print_summary(self, total, skipped_str, failed_str):

origin: test.rest.RestReporter

where:

function source:

def print_summary(self, total, skipped_str, failed_str):
    txt = "%d tests run%s%s in %.2fs (rsync: %.2f)" % \
        (total, skipped_str, failed_str, self.timeend - self.timestart,
         self.timersync - self.timestart)
    self.add_rest(Title(txt, belowchar='-'))

    self.skips()
    self.failures()

    # since we're rendering each item, the links haven't been rendered
    # yet
    self.out.write(self.rest.render_links())

call sites:

called in /home/johnny/projects/merlinux/py/dist/py/test/rsession/testing/test_rest.py

traceback test.rest.RestReporter.print_summary.0