(self, args)
| 289 | @VerifyAndExit( |
| 290 | "cmd failed, may be invalid input options, please check help") |
| 291 | def do_deploydc_and_runtest(self, args): |
| 292 | try: |
| 293 | self.do_deploy(inputs=args) |
| 294 | self.parse_input_runtcs() |
| 295 | self.run_test_suites() |
| 296 | return SUCCESS |
| 297 | except Exception as e: |
| 298 | print("==== deploydc cmd failed:%s ==== " % str(e)) |
| 299 | return FAILED |
| 300 | |
| 301 | @VerifyAndExit( |
| 302 | "cmd failed, may be invalid input options, please check help") |
nothing calls this directly
no test coverage detected