Added logic to run build code to cpl start #124
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user