()
| 240 | |
| 241 | |
| 242 | def main(): |
| 243 | options = parse_cmd_line() |
| 244 | |
| 245 | # Check that credentials are specified to access the datastore. |
| 246 | if not os.environ.get("GOOGLE_APPLICATION_CREDENTIALS"): |
| 247 | raise ValueError("GOOGLE_APPLICATION_CREDENTIALS env. var. is not set.") |
| 248 | |
| 249 | upload_benchmark_files(options) |
| 250 | |
| 251 | |
| 252 | if __name__ == "__main__": |
no test coverage detected