| 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())
|
|
|