Wait for ENTER before executing API
(self, api_name, api_args)
| 322 | super(StepHook, self).before_cli(cli) |
| 323 | |
| 324 | def before_api(self, api_name, api_args): |
| 325 | """Wait for ENTER before executing API""" |
| 326 | if self.skip(): |
| 327 | print("Skip pause before executing API: %s (%s)" % (api_name, api_args)) |
| 328 | else: |
| 329 | print(double_line_delim) |
| 330 | print("Test paused before executing API: %s (%s)" % (api_name, api_args)) |
| 331 | print(single_line_delim) |
| 332 | self.user_input() |
| 333 | super(StepHook, self).before_api(api_name, api_args) |
| 334 | |
| 335 | |
| 336 | class TraceHook(PollHook): |
nothing calls this directly
no test coverage detected