We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b22a96 commit 305f4e1Copy full SHA for 305f4e1
pandas_datareader/tests/test_wb.py
@@ -9,6 +9,8 @@
9
from pandas_datareader.compat import assert_raises_regex
10
from pandas_datareader.wb import (search, download, get_countries,
11
get_indicators, WorldBankReader)
12
+from pandas_datareader._utils import RemoteDataError
13
+from pandas_datareader._testing import skip_on_exception
14
15
16
class TestWB(object):
@@ -215,6 +217,7 @@ def test_wdi_get_indicators(self):
215
217
assert result.columns.equals(exp_col)
216
218
assert len(result) > 10000
219
220
+ @skip_on_exception(RemoteDataError)
221
def test_wdi_download_monthly(self):
222
expected = {'COPPER': {('World', '2012M01'): 8040.47,
223
('World', '2011M12'): 7565.48,
0 commit comments