Move tests to a sub dir.

Else they install to site-packages/tests/
This commit is contained in:
tecnovert
2019-07-26 12:57:05 +02:00
parent 900358e7c3
commit 2882992c4f
10 changed files with 18 additions and 22 deletions

View File

@@ -0,0 +1,14 @@
import unittest
import tests.basicswap.test_other as test_other
import tests.basicswap.test_prepare as test_prepare
import tests.basicswap.test_run as test_run
def test_suite():
loader = unittest.TestLoader()
suite = loader.loadTestsFromModule(test_other)
suite.addTests(loader.loadTestsFromModule(test_prepare))
suite.addTests(loader.loadTestsFromModule(test_run))
return suite