From 17fba3d5a73170314c0785921e357d4408705eb3 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Fri, 18 Sep 2015 12:34:58 +0000 Subject: Print cliapp runcmd output to avoid buffering. --- openstack/tester | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'openstack/tester') diff --git a/openstack/tester b/openstack/tester index 9dd4086..18ab59f 100755 --- a/openstack/tester +++ b/openstack/tester @@ -178,7 +178,8 @@ class Deployment(object): '--disk-format', 'raw', '--container-format', 'bare', '--file', self.image_file] - cliapp.runcmd(args, stdin=None, stdout=None, stderr=None) + output = cliapp.runcmd(args) + print(output) # Get a novaclient object nc = client.Client(2, -- cgit v1.2.1