def _color_from_status(self, status): mapping = { 'failed': Fore.RED, 'skipped': Fore.YELLOW, 'passed': Fore.GREEN, 'pipeline_error': Fore.RED } return mapping[status]