(self, ctx)
| 379 | return False |
| 380 | |
| 381 | def get_command(self, ctx): |
| 382 | params = self._get_cmd_params() |
| 383 | env = self._get_cmd_env() |
| 384 | shell_flags = self._get_shell_flags() |
| 385 | timeout = self._get_timeout(params) |
| 386 | return self._create_cmd(ctx, shell_flags + params, env, timeout) |
| 387 | |
| 388 | def _get_cmd_params(self): |
| 389 | """Gets all command parameters and combines them in the following order: |
no test coverage detected