2022-06-26 00:39:16 +02:00
|
|
|
import threading
|
|
|
|
|
|
|
|
from unittests_shared.cli_commands import CLICommands
|
|
|
|
|
|
|
|
|
|
|
|
class StartTestThread(threading.Thread):
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
threading.Thread.__init__(self, daemon=True)
|
|
|
|
|
|
|
|
def run(self):
|
2022-06-26 01:05:45 +02:00
|
|
|
CLICommands.start(True)
|