(
command,
collect_memory=False,
env_vars=None,
wait_for_finish=True,
input_data=None,
input_file=None,
)
| 124 | |
| 125 | |
| 126 | def aws( |
| 127 | command, |
| 128 | collect_memory=False, |
| 129 | env_vars=None, |
| 130 | wait_for_finish=True, |
| 131 | input_data=None, |
| 132 | input_file=None, |
| 133 | ): |
| 134 | if not env_vars: |
| 135 | env_vars = os.environ.copy() |
| 136 | env_vars['AWS_DEFAULT_REGION'] = "us-west-2" |
| 137 | return _aws( |
| 138 | command, |
| 139 | collect_memory=collect_memory, |
| 140 | env_vars=env_vars, |
| 141 | wait_for_finish=wait_for_finish, |
| 142 | input_data=input_data, |
| 143 | input_file=input_file, |
| 144 | ) |
| 145 | |
| 146 | |
| 147 | def wait_for_process_exit(process, timeout=60): |
no test coverage detected