bumped timeouts for jenkins, took trace out of log test

This commit is contained in:
fawce
2012-05-21 11:35:29 -04:00
parent e2532dacd4
commit cc188a9d6e
2 changed files with 2 additions and 3 deletions
+2 -2
View File
@@ -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
-1
View File
@@ -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')