Source code for labgrid.stepreporter

from .step import steps


[docs]class StepReporter: instance = None
[docs] @classmethod def start(cls): """starts the StepReporter""" assert cls.instance is None cls.instance = cls()
[docs] @classmethod def stop(cls): """stops the StepReporter""" assert cls.instance is not None steps.unsubscribe(cls.notify) cls.instance = None
[docs] def __init__(self): steps.subscribe(StepReporter.notify)
[docs] @staticmethod def notify(event): # ignore tagged events if event.step.tag: return step = event.step indent = ' '*step.level print("{}{}".format(indent, event))