Update to Python3 25/67925/2
authorCédric Ollivier <cedric.ollivier@orange.com>
Sun, 12 May 2019 10:58:29 +0000 (12:58 +0200)
committerCédric Ollivier <ollivier.cedric@gmail.com>
Fri, 24 May 2019 09:14:13 +0000 (11:14 +0200)
Functest containers leverage on Python3 instead of python2.
https://mail.python.org/pipermail/python-dev/2018-March/152348.html

Change-Id: I4f148e91259377b4e3b9076621f192a6e00f6009
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit e38bb1ee4c2a5c2e03ad7af46631da37c5f189ba)

functest_kubernetes/k8stest.py

index 76693e9..c78959c 100644 (file)
@@ -46,7 +46,7 @@ class K8sTesting(testcase.TestCase):
 
         process = subprocess.Popen(cmd_line, stdout=subprocess.PIPE,
                                    stderr=subprocess.STDOUT)
-        output = process.stdout.read()
+        output = process.stdout.read().decode("utf-8")
         if ('Error loading client' in output or
                 'Unexpected error' in output):
             raise Exception(output)