diff --git a/platformio/commands/test/embedded.py b/platformio/commands/test/embedded.py index 6c1c57c4..6870dcd5 100644 --- a/platformio/commands/test/embedded.py +++ b/platformio/commands/test/embedded.py @@ -90,7 +90,7 @@ class EmbeddedTestProcessor(TestProcessorBase): if not line: continue if isinstance(line, bytes): - line = line.decode("utf8") + line = line.decode("utf8", "ignore") self.on_run_out(line) if all([l in line for l in ("Tests", "Failures", "Ignored")]): break