From 56ceee220b74f6de97fc70fde49554accd9aa388 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 11 Nov 2019 22:48:29 +0200 Subject: [PATCH] Fix invalid build status for unit test when remote is used --- platformio/commands/test/embedded.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/commands/test/embedded.py b/platformio/commands/test/embedded.py index dc0d9ef0..6f47eafc 100644 --- a/platformio/commands/test/embedded.py +++ b/platformio/commands/test/embedded.py @@ -46,7 +46,7 @@ class EmbeddedTestProcessor(TestProcessorBase): return False if self.options["without_testing"]: - return None + return True self.print_progress("Testing...") return self.run()