(cmd_name)
| 178 | |
| 179 | |
| 180 | def run_command(cmd_name): |
| 181 | ctx = Context.create_context(cmd_name) |
| 182 | ctx.log_timer = Utils.Timer() |
| 183 | ctx.options = Options.options |
| 184 | ctx.cmd = cmd_name |
| 185 | try: |
| 186 | ctx.execute() |
| 187 | finally: |
| 188 | ctx.finalize() |
| 189 | return ctx |
| 190 | |
| 191 | |
| 192 | def run_commands(): |
no test coverage detected
searching dependent graphs…