(argv)
| 132 | |
| 133 | |
| 134 | def execute(argv): |
| 135 | try: |
| 136 | output = subprocess.check_output(argv, stderr=subprocess.STDOUT) |
| 137 | if verbose_mode: |
| 138 | print output |
| 139 | return output |
| 140 | except subprocess.CalledProcessError as e: |
| 141 | print e.output |
| 142 | raise e |
| 143 | |
| 144 | |
| 145 | def get_thrust_version(): |
no outgoing calls
no test coverage detected