mirror of
https://github.com/basicswap/basicswap.git
synced 2024-11-17 08:18:04 +00:00
11 lines
255 B
Python
11 lines
255 B
Python
import unittest
|
|
|
|
import tests.test_run
|
|
import tests.test_other
|
|
|
|
|
|
def test_suite():
|
|
loader = unittest.TestLoader()
|
|
suite = loader.loadTestsFromModule(tests.test_run)
|
|
suite.addTests(loader.loadTestsFromModule(tests.test_other))
|
|
return suite
|