(self, infofile: Optional[str] = None)
| 347 | return dict_sha256(exp_data) |
| 348 | |
| 349 | def cleanup(self, infofile: Optional[str] = None): |
| 350 | if infofile is not None: |
| 351 | info = ExecutorInfo.load_json(infofile) |
| 352 | if info.status < TaskStatus.FAILED: |
| 353 | info.status = TaskStatus.FINISHED |
| 354 | info.dump_json(infofile) |
| 355 | |
| 356 | # TODO: come up with better way to stash repro arguments |
| 357 | @staticmethod |