chore: address review from https://github.com/status-im/status-desktop/pull/15251/
This commit is contained in:
parent
8bf4199433
commit
f038d83281
|
@ -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':
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue