Name Description Size Coverage
__init__.py 809 -
base.py Base class for implementing non-trivial formatters. Subclasses are expected to provide a method for each action type they wish to handle, each taking a single argument for the test data. For example a trivial subclass that just produces the id of each test as it starts might be:: class StartIdFormatter(BaseFormatter); def test_start(data): #For simplicity in the example pretend the id is always a string return data["test"] 903 -
errorsummary.py 5685 -
grouping.py Formatter designed to produce unexpected test results grouped together in a readable format. 15314 -
html -
machformatter.py Format number of seconds to MM:SS.DD form. 23012 -
process.py Translate a process signal identifier to a human readable string. 1696 -
tbplformatter.py Formatter that formats logs in the legacy formatting format used by TBPL This is intended to be used to preserve backward compatibility with existing tools hand-parsing this format. 15806 -
unittest.py Formatter designed to produce output in a format like that used by the ``unittest`` module in the standard library. 2458 -
xunit.py Take a test id and return something that looks a bit like a class path 3997 -