summaryrefslogtreecommitdiffstats
path: root/qtip/drivers/ansible.py
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2016-12-19 11:14:40 +0800
committerYujun Zhang <zhang.yujunz@zte.com.cn>2016-12-20 09:24:55 +0800
commit4169878ccfd1b963c9fa28a3aee3d67c5a4c0990 (patch)
tree4afeecd0f6ce024fbc3892a820ca13643bc46cc1 /qtip/drivers/ansible.py
parenteb074711d7ae91665fe8a2063820703fae4ab3aa (diff)
Add skeletons of drivers, collector and reporter
Change-Id: I22a021800bbc813d7c5309d075fcbb8a19946e3f Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
Diffstat (limited to 'qtip/drivers/ansible.py')
-rw-r--r--qtip/drivers/ansible.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/qtip/drivers/ansible.py b/qtip/drivers/ansible.py
new file mode 100644
index 00000000..04e9f9bd
--- /dev/null
+++ b/qtip/drivers/ansible.py
@@ -0,0 +1,14 @@
+##############################################################################
+# 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 base import BaseDriver
+
+
+class AnsibleDriver(BaseDriver):
+ """driver for running performance tests with Ansible"""