File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -150,12 +150,16 @@ def test_get_quote_stringlist(self):
150
150
151
151
@network
152
152
def test_get_components_dow_jones (self ):
153
+ raise nose .SkipTest ('unreliable test, receive partial components back for dow_jones' )
154
+
153
155
df = web .get_components_yahoo ('^DJI' ) #Dow Jones
154
156
assert isinstance (df , pd .DataFrame )
155
157
self .assertEqual (len (df ), 30 )
156
158
157
159
@network
158
160
def test_get_components_dax (self ):
161
+ raise nose .SkipTest ('unreliable test, receive partial components back for dax' )
162
+
159
163
df = web .get_components_yahoo ('^GDAXI' ) #DAX
160
164
assert isinstance (df , pd .DataFrame )
161
165
self .assertEqual (len (df ), 30 )
@@ -166,6 +170,8 @@ def test_get_components_dax(self):
166
170
def test_get_components_nasdaq_100 (self ):
167
171
"""as of 7/12/13 the conditional will test false because the link is
168
172
invalid"""
173
+ raise nose .SkipTest ('unreliable test, receive partial components back for nasdaq_100' )
174
+
169
175
df = web .get_components_yahoo ('^NDX' ) #NASDAQ-100
170
176
assert isinstance (df , pd .DataFrame )
171
177
You can’t perform that action at this time.
0 commit comments