blob: d7743b26ec11493b7cc62c51de698fae65842f2d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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 *
if "acceptance" in limits:
from tests.test_acceptance import *
if __name__ == '__main__':
unittest.main()
|