mirror of
https://github.com/basicswap/basicswap.git
synced 2024-11-17 16:28:19 +00:00
14 lines
349 B
Python
14 lines
349 B
Python
import unittest
|
|
|
|
import tests.test_other
|
|
import tests.test_prepare
|
|
import tests.test_run
|
|
|
|
|
|
def test_suite():
|
|
loader = unittest.TestLoader()
|
|
suite = loader.loadTestsFromModule(tests.test_other)
|
|
suite.addTests(loader.loadTestsFromModule(tests.test_prepare))
|
|
suite.addTests(loader.loadTestsFromModule(tests.test_run))
|
|
|
|
return suite
|