in testslide/runner.py [0:0]
def start(self, example: Example) -> None:
"""
To be called before each example execution.
"""
context_to_print = [
context
for context in example.context.hierarchy
if context not in self.current_hierarchy
]
for context in context_to_print:
self.new_context(context)
self.new_example(example)
self.current_hierarchy = example.context.hierarchy