This commit is contained in:
Anastasiya Semenkevich 2024-06-28 16:39:47 +03:00 committed by Anastasiya
parent 8bf4199433
commit f038d83281
2 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ class AUT:
LOG.info('Stopping AUT: %s', self.path)
self.detach_context()
local_system.kill_process(self.pid)
time.sleep(1)
time.sleep(1) # FIXME: Implement waiting for process to actually exit.
@allure.step("Start and attach AUT")
def launch(self) -> 'AUT':

View File

@ -44,7 +44,7 @@ class SquishServer:
return
LOG.info('Stopping Squish Server with PID: %d', cls.pid)
local_system.kill_process(cls.pid)
time.sleep(1)
time.sleep(1) # FIXME: Implement waiting for process to actually exit.
cls.pid = None
cls.port = None