From e3e037563b548646913f8eb242725188ed3ef298 Mon Sep 17 00:00:00 2001 From: manmorjim Date: Mon, 2 Mar 2020 15:21:32 +0100 Subject: [PATCH] Deconding the tests output --- test/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/run_tests.py b/test/run_tests.py index 849822f..a505750 100644 --- a/test/run_tests.py +++ b/test/run_tests.py @@ -59,7 +59,7 @@ def execute_tests(): stderr=subprocess.PIPE ) out, err = process.communicate() - print(err) + print(err.decode('utf-8')) regexp = re.compile(r'FAILED \(.*\)') if regexp.search(err) is not None: sys.exit(1)