aboutsummaryrefslogtreecommitdiff
path: root/tests/test_market.py
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2018-04-20 20:18:51 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2018-04-20 20:18:51 +0200
commitad64ff17e3aa7d7af40a3724a8cd9f19ca045422 (patch)
tree7430317bbac8fa7a21cc2e2c7b07fb033a468024 /tests/test_market.py
parent18de421e455ab4b125a6684d703a296562097e6b (diff)
parent4d597c5f302fc4621bc0950c5421dbe5309bef28 (diff)
downloadTrader-ad64ff17e3aa7d7af40a3724a8cd9f19ca045422.tar.gz
Trader-ad64ff17e3aa7d7af40a3724a8cd9f19ca045422.tar.zst
Trader-ad64ff17e3aa7d7af40a3724a8cd9f19ca045422.zip
Merge branch 'test_cleanup' into dev
Diffstat (limited to 'tests/test_market.py')
-rw-r--r--tests/test_market.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_market.py b/tests/test_market.py
index fd23162..14b23b5 100644
--- a/tests/test_market.py
+++ b/tests/test_market.py
@@ -2,6 +2,7 @@ from .helper import *
2import market, store, portfolio 2import market, store, portfolio
3import datetime 3import datetime
4 4
5@unittest.skipUnless("unit" in limits, "Unit skipped")
5class MarketTest(WebMockTestCase): 6class MarketTest(WebMockTestCase):
6 def setUp(self): 7 def setUp(self):
7 super().setUp() 8 super().setUp()
@@ -729,6 +730,7 @@ class MarketTest(WebMockTestCase):
729 store_report.assert_called_once() 730 store_report.assert_called_once()
730 731
731 732
733@unittest.skipUnless("unit" in limits, "Unit skipped")
732class ProcessorTest(WebMockTestCase): 734class ProcessorTest(WebMockTestCase):
733 def test_values(self): 735 def test_values(self):
734 processor = market.Processor(self.m) 736 processor = market.Processor(self.m)