Skip to content
Snippets Groups Projects
Commit 5f229522 authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

Replace non UTF-8 characters from tests outputs | refs #32250

parent 0270a5b1
No related branches found
No related tags found
No related merge requests found
......@@ -335,7 +335,7 @@ class Tester:
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
)
out = p.stdout.decode("utf-8").strip()
out = p.stdout.decode("utf-8", "replace").strip()
log(out)
if p.returncode in (0, 2, 3):
break
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment