mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-17 17:19:02 +00:00
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)
|
LOG.info('Stopping AUT: %s', self.path)
|
||||||
self.detach_context()
|
self.detach_context()
|
||||||
local_system.kill_process(self.pid)
|
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")
|
@allure.step("Start and attach AUT")
|
||||||
def launch(self) -> 'AUT':
|
def launch(self) -> 'AUT':
|
||||||
|
@ -44,7 +44,7 @@ class SquishServer:
|
|||||||
return
|
return
|
||||||
LOG.info('Stopping Squish Server with PID: %d', cls.pid)
|
LOG.info('Stopping Squish Server with PID: %d', cls.pid)
|
||||||
local_system.kill_process(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.pid = None
|
||||||
cls.port = None
|
cls.port = None
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user