Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(165)

Unified Diff: infra/tools/cq_stats/__main__.py

Issue 1125653004: Check in cq_stats.py (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: use utc Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « infra/tools/cq_stats/__init__.py ('k') | infra/tools/cq_stats/cq_stats.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: infra/tools/cq_stats/__main__.py
diff --git a/appengine/chrome_infra_mon_proxy/test/__init__.py b/infra/tools/cq_stats/__main__.py
similarity index 55%
copy from appengine/chrome_infra_mon_proxy/test/__init__.py
copy to infra/tools/cq_stats/__main__.py
index 1aaf0e179ff8be75507de66fe3c36f6b1d7b7b03..615ca98482109deb82fe8b187040bebf29541ae2 100644
--- a/appengine/chrome_infra_mon_proxy/test/__init__.py
+++ b/infra/tools/cq_stats/__main__.py
@@ -1,4 +1,12 @@
+#!/usr/bin/env python
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import sys
+
+from infra.tools.cq_stats import cq_stats
+
+
+if __name__ == '__main__':
+ sys.exit(cq_stats.main())
« no previous file with comments | « infra/tools/cq_stats/__init__.py ('k') | infra/tools/cq_stats/cq_stats.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698