aboutsummaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2018-04-20 20:09:13 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2018-04-20 20:16:18 +0200
commit3080f31d1ee74104640dcff451922cd0ae88ee22 (patch)
tree81570ba2eb909b05e7aa4805f5535e47e1df6a11 /test.py
parent9fe90554ff1c8c7aea9e1e1e210419a845579edd (diff)
downloadTrader-3080f31d1ee74104640dcff451922cd0ae88ee22.tar.gz
Trader-3080f31d1ee74104640dcff451922cd0ae88ee22.tar.zst
Trader-3080f31d1ee74104640dcff451922cd0ae88ee22.zip
Move acceptance tests to common directory
Diffstat (limited to 'test.py')
-rw-r--r--test.py17
1 files changed, 12 insertions, 5 deletions
diff --git a/test.py b/test.py
index 8b9d35b..d7743b2 100644
--- a/test.py
+++ b/test.py
@@ -1,10 +1,17 @@
1import unittest 1import unittest
2from tests.acceptance import TimeMock
2 3
3from tests.test_ccxt_wrapper import * 4from tests.helper import limits
4from tests.test_main import * 5
5from tests.test_market import * 6if "unit" in limits:
6from tests.test_store import * 7 from tests.test_ccxt_wrapper import *
7from tests.test_portfolio import * 8 from tests.test_main import *
9 from tests.test_market import *
10 from tests.test_store import *
11 from tests.test_portfolio import *
12
13if "acceptance" in limits:
14 from tests.test_acceptance import *
8 15
9if __name__ == '__main__': 16if __name__ == '__main__':
10 unittest.main() 17 unittest.main()