Fix osx gitian path.

This commit is contained in:
tecnovert
2019-07-27 22:13:35 +02:00
parent 7ccf191192
commit 682fe578a7
4 changed files with 8 additions and 5 deletions

View File

@@ -3,6 +3,7 @@ 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
import tests.basicswap.test_reload as test_reload
def test_suite():
@@ -10,5 +11,6 @@ def test_suite():
suite = loader.loadTestsFromModule(test_other)
suite.addTests(loader.loadTestsFromModule(test_prepare))
suite.addTests(loader.loadTestsFromModule(test_run))
suite.addTests(loader.loadTestsFromModule(test_reload))
return suite