async def run_all(self): """Runs the conditioned profile builders""" if self.scenario != "all": selected_scenario = [self.scenario] else: selected_scenario = scenarii.keys() # this is the loop that generates all combinations of profile # for the current platform when "all" is selected res = [] failures = 0 for scenario in selected_scenario: if self.customization != "all": try: res.append(await self.one_run(scenario, self.customization)) except Exception: failures += 1 self.display_error(scenario, self.customization) else: for customization in get_customizations(): logger.info("Customization %s" % customization) try: res.append(await self.one_run(scenario, customization)) except Exception: failures += 1 self.display_error(scenario, customization) return failures, [one_res for one_res in res if one_res]
async def run_all(args): if args.scenario != "all": selected_scenario = [args.scenario] else: selected_scenario = scenarii.keys() # this is the loop that generates all combinations of profile # for the current platform when "all" is selected res = [] failures = 0 for scenario in selected_scenario: if args.customization != "all": try: res.append(await one_run(scenario, args.customization)) except Exception: failures += 1 ERROR("Something went wrong on this one.") if args.strict: raise else: for customization in get_customizations(): LOG("Customization %s" % customization) try: res.append(await one_run(scenario, customization)) except Exception: failures += 1 ERROR("Something went wrong on this one.") if args.strict: raise return failures, [one_res for one_res in res if one_res]
async def run_all(args): if args.scenario != "all": return await one_run(args.scenario, args.customization) # this is the loop that generates all combinations of profile # for the current platform when "all" is selected res = [] for scenario in scenarii.keys(): if args.customization != "all": try: res.append(await one_run(scenario, args.customization)) except Exception: ERROR("Something went wrong on this one.") if args.strict: raise else: for customization in get_customizations(): try: res.append(await one_run(scenario, customization)) except Exception: ERROR("Something went wrong on this one.") if args.strict: raise return res