aboutsummaryrefslogtreecommitdiffstats
path: root/xtesting/core
diff options
context:
space:
mode:
Diffstat (limited to 'xtesting/core')
-rw-r--r--xtesting/core/ansible.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/xtesting/core/ansible.py b/xtesting/core/ansible.py
index 21148a18..7ccace9f 100644
--- a/xtesting/core/ansible.py
+++ b/xtesting/core/ansible.py
@@ -54,7 +54,8 @@ class Ansible(testcase.TestCase):
try:
if not os.path.exists(self.res_dir):
os.makedirs(self.res_dir)
- kwargs["quiet"] = True
+ if "quiet" not in kwargs:
+ kwargs["quiet"] = True
kwargs["artifact_dir"] = self.res_dir
runner = ansible_runner.run(**kwargs)
self.details = runner.stats