Fixing kivy test data

This commit is contained in:
shekhar-cis 2022-11-08 13:00:49 +05:30
parent 52d272065b
commit a5a56fe7f1
Signed by untrusted user: shekhar-cis
GPG Key ID: F4F00AB04E83F9A7
2 changed files with 2 additions and 10 deletions

View File

@ -54,15 +54,7 @@ class TeleniumTestProcess(TeleniumTestCase):
def tearDownClass(cls):
"""Ensures that pybitmessage stopped and removes files"""
# pylint: disable=no-member
try:
cls.cli.app_quit()
except:
pass
try:
cls.process.kill()
except:
pass
super(TeleniumTestProcess, cls).tearDownClass()
cleanup()
def assert_wait_no_except(self, selector, timeout=-1, value='inbox'):

View File

@ -31,9 +31,9 @@ def main():
# close the main program even if there are threads left
addressGeneratorThread.daemon = True
addressGeneratorThread.start()
state.kivyapp = NavigateApp()
state.kivyapp.run()
addressGeneratorThread.stopThread()
if __name__ == "__main__":