diff options
author | jose.lausuch <jose.lausuch@ericsson.com> | 2016-07-19 15:18:28 +0200 |
---|---|---|
committer | jose.lausuch <jose.lausuch@ericsson.com> | 2016-07-19 17:34:41 +0200 |
commit | 6e46af35376e25ee58069f651e2ec5ff765d3a09 (patch) | |
tree | 64430bb3603f1285a6015af2f5237dfe2b7962ac /utils/functest_utils.py | |
parent | 0f5113627629c6f858b697a0b3ff141c9492d564 (diff) |
Show real time tempest test execution
JIRA: FUNCTEST-375
Change-Id: I4f0cb68639b927f2980389d9331ec260605c8caf
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'utils/functest_utils.py')
-rw-r--r-- | utils/functest_utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/functest_utils.py b/utils/functest_utils.py index 9a19eb4ca..b51a1c868 100644 --- a/utils/functest_utils.py +++ b/utils/functest_utils.py @@ -244,7 +244,8 @@ def execute_command(cmd, logger=None, print(msg_exec) p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE) while True: - line = p.stdout.readline().replace('\n', '') + output = p.stdout.readline() + line = output.replace('\n', '') if not line: break if logger: |