File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
pandas_datareader/tests/google Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -81,15 +81,15 @@ def assert_option_result(self, df):
81
81
'datetime64[ns]' ]]
82
82
tm .assert_series_equal (df .dtypes , pd .Series (dtypes , index = exp_columns ))
83
83
84
+ @pytest .mark .xfail (reason = "Google quote api is offline as of Oct 1, 2017" )
84
85
def test_get_quote_string (self ):
85
- pytest .skip ("Google quote api is offline as of Oct 1, 2017" )
86
86
df = web .get_quote_google ('GOOG' )
87
87
assert df .loc ['GOOG' , 'last' ] > 0.0
88
88
tm .assert_index_equal (df .index , pd .Index (['GOOG' ]))
89
89
self .assert_option_result (df )
90
90
91
+ @pytest .mark .xfail (reason = "Google quote api is offline as of Oct 1, 2017" )
91
92
def test_get_quote_stringlist (self ):
92
- pytest .skip ("Google quote api is offline as of Oct 1, 2017" )
93
93
df = web .get_quote_google (['GOOG' , 'AMZN' , 'GOOG' ])
94
94
assert_series_equal (df .iloc [0 ], df .iloc [2 ])
95
95
tm .assert_index_equal (df .index , pd .Index (['GOOG' , 'AMZN' , 'GOOG' ]))
You can’t perform that action at this time.
0 commit comments