From 3080f31d1ee74104640dcff451922cd0ae88ee22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Fri, 20 Apr 2018 20:09:13 +0200 Subject: Move acceptance tests to common directory --- test.py | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'test.py') diff --git a/test.py b/test.py index 8b9d35b..d7743b2 100644 --- a/test.py +++ b/test.py @@ -1,10 +1,17 @@ import unittest +from tests.acceptance import TimeMock -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.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() -- cgit v1.2.3