(self,
task: ConfigDict,
debug: bool = False,
lark_bot_url: str = None)
| 18 | """ |
| 19 | |
| 20 | def __init__(self, |
| 21 | task: ConfigDict, |
| 22 | debug: bool = False, |
| 23 | lark_bot_url: str = None): |
| 24 | self.task_cfg = Config(task) |
| 25 | self.debug = debug |
| 26 | if lark_bot_url: |
| 27 | self.lark_reporter = LarkReporter(lark_bot_url) |
| 28 | else: |
| 29 | self.lark_reporter = None |
| 30 | |
| 31 | def __call__(self, tasks: List[Dict[str, Any]]): |
| 32 | """Launch multiple tasks and summarize the results. |
nothing calls this directly
no test coverage detected