From 86794d2cf1b48c79e3d5d330157a734e430b46a5 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 31 Aug 2016 14:13:09 +0300 Subject: [PATCH] Don't check program path --- platformio/commands/test.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/platformio/commands/test.py b/platformio/commands/test.py index db35db45..6820fa31 100644 --- a/platformio/commands/test.py +++ b/platformio/commands/test.py @@ -16,7 +16,7 @@ from fnmatch import fnmatch from os import getcwd, listdir -from os.path import isdir, isfile, join +from os.path import isdir, join from time import sleep, time import click @@ -173,8 +173,6 @@ class LocalTestProcessor(TestProcessorBase): def run(self): with util.cd(self.options['project_dir']): pioenvs_dir = util.get_projectpioenvs_dir() - program_path = join(pioenvs_dir, self.env_name, "program") - assert isfile(program_path) result = util.exec_command( [join(pioenvs_dir, self.env_name, "program")], stdout=util.AsyncPipe(self.on_run_out),