summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2015-09-16 16:34:56 +0100
committerMichael Drake <michael.drake@codethink.co.uk>2015-09-16 16:34:56 +0100
commitda01fffe3aaddfa953358bea59e09c58fa749349 (patch)
tree9d3daede02744a24bcacb31287b91b361376c2b8
parentbb2a077836d305b68d898db51211aa8394ee9cf8 (diff)
downloadciat-tester-da01fffe3aaddfa953358bea59e09c58fa749349.tar.gz
Don't direct output to self.output.
-rwxr-xr-xopenstack/tester2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/tester b/openstack/tester
index cf89942..fe14388 100755
--- a/openstack/tester
+++ b/openstack/tester
@@ -272,7 +272,7 @@ class ReleaseApp(cliapp.Application):
print('Running test: ' + data['name'])
for cmd in data['commands']:
print('$ ' + cmd)
- instance.runcmd(['sh', '-c', cmd], stdout=self.output)
+ instance.runcmd(['sh', '-c', cmd])
def deploy_and_test_systems(self, tests):
"""Run the deployments and tests"""