diff --git a/.gitignore b/.gitignore index aa8591c..2d8e833 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,6 @@ configs/_local.py .idea/ .venv/ -/squish_server.ini *.pyc diff --git a/driver/server.py b/driver/server.py index b7d3239..e9be59e 100644 --- a/driver/server.py +++ b/driver/server.py @@ -13,7 +13,7 @@ _logger = logging.getLogger(__name__) class SquishServer: __instance = None path = configs.testpath.SQUISH_DIR / 'bin' / 'squishserver' - config = configs.testpath.ROOT / 'squish_server.ini' + config = configs.testpath.ROOT / 'squish.ini' host = '127.0.0.1' port = None pid = None @@ -53,18 +53,6 @@ class SquishServer: local_system.run( [f'"{cls.path}"', '--configfile', str(cls.config), '--config', action, ' '.join(options)]) - @classmethod - def add_executable_aut(cls, aut_id, app_dir): - cls.configuring('addAUT', [aut_id, f'"{app_dir}"']) - @classmethod def add_attachable_aut(cls, aut_id: str, port: int): cls.configuring('addAttachableAUT', [aut_id, f'localhost:{port}']) - - @classmethod - def set_aut_timeout(cls, value: int = configs.timeouts.PROCESS_TIMEOUT_SEC): - cls.configuring('setAUTTimeout', [str(value)]) - - @classmethod - def set_cursor_animation(cls, value: bool = configs.squish.CURSOR_ANIMATION): - cls.configuring('setCursorAnimation', [str(value)]) diff --git a/squish.ini b/squish.ini new file mode 100644 index 0000000..ab58444 --- /dev/null +++ b/squish.ini @@ -0,0 +1,3 @@ +[General] +AUTTimeout = "10" +CursorAnimation = False