method: test.rest.RestReporter.report_ReceivedItemOutcome

*Not documented*
    def report_ReceivedItemOutcome(self, event):

origin: test.rest.RestReporter

where:

function source:

def report_ReceivedItemOutcome(self, event):
    host = self.get_host(event)
    if event.outcome.passed:
        status = "PASSED"
        self.passed[host] += 1
    elif event.outcome.skipped:
        status = "SKIPPED"
        self.skipped_tests_outcome.append(event)
        self.skipped[host] += 1
    else:
        status = "FAILED"
        self.failed[host] += 1
        self.failed_tests_outcome.append(event)
        # we'll take care of them later
    itempath = self.get_path_from_item(event.item)
    self.add_rest(ListItem(Text("%10s:" % (host[:10],)), Strong(status),
                           Text(itempath)))

call sites:

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

traceback test.rest.RestReporter.report_ReceivedItemOutcome.0

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

traceback test.rest.RestReporter.report_ReceivedItemOutcome.1

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

traceback test.rest.RestReporter.report_ReceivedItemOutcome.2

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

traceback test.rest.RestReporter.report_ReceivedItemOutcome.3