tests: Run more tests in ci.

This commit is contained in:
tecnovert
2024-01-28 00:07:07 +02:00
parent 53ceae718b
commit 30a5ea1652
7 changed files with 36 additions and 11 deletions

View File

@@ -336,6 +336,7 @@ class BaseTest(unittest.TestCase):
@classmethod
def setUpClass(cls):
test_delay_event.clear()
random.seed(time.time())
logger.propagate = False
@@ -618,6 +619,13 @@ class BaseTest(unittest.TestCase):
stopDaemons(cls.btc_daemons)
stopDaemons(cls.ltc_daemons)
cls.http_threads.clear()
cls.swap_clients.clear()
cls.part_daemons.clear()
cls.btc_daemons.clear()
cls.ltc_daemons.clear()
cls.xmr_daemons.clear()
super(BaseTest, cls).tearDownClass()
@classmethod