From 13228f4c28764636be088898808ef9df770918ab Mon Sep 17 00:00:00 2001 From: Vladimir Druzhinin <128374224+StateOf-Vlado@users.noreply.github.com> Date: Fri, 28 Jul 2023 17:20:29 +0200 Subject: [PATCH] test(AUT) Skip closing AUT process at the end of the test (#11701) #85 --- test/ui-test/src/drivers/aut.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/ui-test/src/drivers/aut.py b/test/ui-test/src/drivers/aut.py index 9f53163f83..257ee5cfba 100644 --- a/test/ui-test/src/drivers/aut.py +++ b/test/ui-test/src/drivers/aut.py @@ -54,7 +54,9 @@ class ExecutableAut(AbstractAut): return self def close(self): - local_system.kill_process(self.fp.name) + # https://github.com/status-im/desktop-qa-automation/issues/85 + # local_system.kill_process(self.fp.name) + pass class StatusAut(ExecutableAut):