summaryrefslogtreecommitdiffstats
path: root/qtip/run.py
diff options
context:
space:
mode:
authorwu.zhihui <wu.zhihui1@zte.com.cn>2016-11-29 11:29:13 +0800
committerwu.zhihui <wu.zhihui1@zte.com.cn>2016-11-29 14:24:08 +0800
commitcedb153852add9f4d38724bbdbdf66074ea44317 (patch)
treeedea315bf07c5ec3d75a2ed77c8885a40366ede6 /qtip/run.py
parent29927dc95238bbc5652a1bbd31ff686ec976d032 (diff)
correct module path in qtip.py
See https://build.opnfv.org/ci/job/qtip-fuel-zte-pod3-daily-master/43/console for details. Change-Id: Ic12c4143bd29e7d56ac68e8a3317c8b3f36a274f Signed-off-by: wu.zhihui <wu.zhihui1@zte.com.cn>
Diffstat (limited to 'qtip/run.py')
-rw-r--r--qtip/run.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/qtip/run.py b/qtip/run.py
new file mode 100644
index 00000000..a2c26eda
--- /dev/null
+++ b/qtip/run.py
@@ -0,0 +1,18 @@
+##############################################################################
+# Copyright (c) 2015 Dell Inc and others.
+# Copyright (c) 2016 ZTE corp. and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+from utils.cli import Cli
+
+
+def main():
+ Cli()
+
+
+if __name__ == "__main__":
+ main()