(self, args)
| 277 | @VerifyAndExit( |
| 278 | "cmd failed, may be invalid input options, please check help") |
| 279 | def do_deploydc(self, args): |
| 280 | try: |
| 281 | self.__deployFlag = True |
| 282 | self.parse_input_deploy(inputs=args) |
| 283 | self.start_marvin() |
| 284 | return SUCCESS |
| 285 | except Exception as e: |
| 286 | print("==== deploy cmd failed :%s ==== " % str(e)) |
| 287 | return FAILED |
| 288 | |
| 289 | @VerifyAndExit( |
| 290 | "cmd failed, may be invalid input options, please check help") |
nothing calls this directly
no test coverage detected