test(AUT) Skip closing AUT process at the end of the test (#11701)

#85
This commit is contained in:
Vladimir Druzhinin 2023-07-28 17:20:29 +02:00 committed by GitHub
parent 2749236a56
commit 13228f4c28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -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):