summaryrefslogtreecommitdiffstats
path: root/qtip/driver/ansible.py
diff options
context:
space:
mode:
authorwu.zhihui <wu.zhihui1@zte.com.cn>2017-03-02 18:40:11 +0800
committerzhihui wu <zhihui.wu2006+zte@gmail.com>2017-03-03 00:53:59 +0000
commit7433b1c89e2ffba3b097832f353146f12987e6dd (patch)
tree2e99d8a91417414d4cce6dd299d918a604e4d206 /qtip/driver/ansible.py
parent473deae9a10162f000c49ca49b4e31b28c4bf0d8 (diff)
Refactor dhrystone playbook
- Break previous one playbook into three playbooks: setup.yaml: setup test environment. run.yaml: execute test steps clean.yaml: cleanup test environment to restore environment The advantage is cleaning part will never be blocked by another. - Just do testing on remote hosts, parse logfile on localhost. - Use ansible module instead of shell command. - Move up all files under /ansible and remove ansible directory. Under /ansible, ansible package cann't be imported. Change-Id: I43c65be23869b7d42ca769994d4decb9a012d196 Signed-off-by: wu.zhihui <wu.zhihui1@zte.com.cn>
Diffstat (limited to 'qtip/driver/ansible.py')
-rw-r--r--qtip/driver/ansible.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/qtip/driver/ansible.py b/qtip/driver/ansible.py
new file mode 100644
index 00000000..cd17625d
--- /dev/null
+++ b/qtip/driver/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 qtip.driver.base import BaseDriver
+
+
+class AnsibleDriver(BaseDriver):
+ """driver for running performance tests with Ansible"""