Added logic to run build code to cpl start #124

This commit is contained in:
2022-12-02 19:38:03 +01:00
parent d0877a4ea6
commit 856960d799
4 changed files with 68 additions and 12 deletions

View File

@@ -5,8 +5,9 @@ from unittests_shared.cli_commands import CLICommands
class StartTestThread(threading.Thread):
def __init__(self):
def __init__(self, is_dev=False):
threading.Thread.__init__(self, daemon=True)
self._is_dev = is_dev
def run(self):
CLICommands.start(True)
CLICommands.start(is_dev=self._is_dev, output=True)