TST: Disable talib default params test.

The data zipline_transform.window is always evaluating to empty,
thus the actual checks are not being used because of the
`if not data` done before running the `asserts`.

This behavior should be fixed, and we should either remove the
`not data` check, or bubble up that the check is being hit too
many times; but in the meantime, disabling this test which takes
a non-trivial amount of time to run.

When run as an algorithm, outside of unit tests the talib wrapper
does work, so the cause of the window always being empty may be to
due to the machinery of the unit test.
This commit is contained in:
Eddie Hebert
2014-03-26 15:47:09 -04:00
parent 4bdecd6402
commit 64b2a7377c
+2 -1
View File
@@ -18,7 +18,7 @@ import numpy as np
import pandas as pd
from datetime import timedelta, datetime
from unittest import TestCase
from unittest import TestCase, skip
from six.moves import range
@@ -294,6 +294,7 @@ class TestTALIB(TestCase):
self.source, self.panel = \
factory.create_test_panel_ohlc_source(sim_params)
@skip
def test_talib_with_default_params(self):
BLACKLIST = ['make_transform', 'BatchTransform',
# TODO: Figure out why MAVP generates a KeyError