From cc188a9d6e1188ec691a23a66e3e49f818070aaa Mon Sep 17 00:00:00 2001 From: fawce Date: Mon, 21 May 2012 11:35:29 -0400 Subject: [PATCH] bumped timeouts for jenkins, took trace out of log test --- tests/test_finance.py | 4 ++-- tests/test_logger.py | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test_finance.py b/tests/test_finance.py index 77a04495..3676bea9 100644 --- a/tests/test_finance.py +++ b/tests/test_finance.py @@ -106,7 +106,7 @@ class FinanceTestCase(TestCase): # non blocking. HUNCH: The trades are streaming through before the orders # are placed. - @timed(DEFAULT_TIMEOUT) + @timed(EXTENDED_TIMEOUT) def test_orders(self): # Simulation @@ -182,7 +182,7 @@ class FinanceTestCase(TestCase): - @timed(DEFAULT_TIMEOUT) + @timed(EXTENDED_TIMEOUT) def test_performance(self): #provide enough trades to ensure all orders are filled. self.zipline_test_config['order_count'] = 100 diff --git a/tests/test_logger.py b/tests/test_logger.py index 82e80210..e39bf883 100644 --- a/tests/test_logger.py +++ b/tests/test_logger.py @@ -13,7 +13,6 @@ class LoggerTestCase(TestCase): self.LOG = logging.getLogger("ZiplineLogger") def test_log(self): - import nose.tools; nose.tools.set_trace() test_msg = uuid.uuid1().hex self.LOG.info(test_msg) logfile = open('/var/log/zipline/zipline.log','r')