aboutsummaryrefslogtreecommitdiff
path: root/test.py
blob: ed8943461fe07bae36a5c7fd87f0c13cf89ce01b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import unittest
from tests.acceptance import TimeMock

from tests.helper import limits

if "unit" in limits:
    from tests.test_ccxt_wrapper import *
    from tests.test_main import *
    from tests.test_market import *
    from tests.test_store import *
    from tests.test_portfolio import *
    from tests.test_dbs import *

if "acceptance" in limits:
    from tests.test_acceptance import *

if __name__ == '__main__':
    unittest.main()