Skip to content

Commit b20fc15

Browse files
author
y-p
committed
Revert "TST: skip the get_quote_stringlist in TestYahoo....failing from network issues too much"
This reverts commit 0c938e6.
1 parent b3afa7c commit b20fc15

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

pandas/io/tests/test_data.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ def test_get_quote_string(self):
145145

146146
@network
147147
def test_get_quote_stringlist(self):
148-
raise nose.SkipTest('unreliable test')
149148
df = web.get_quote_yahoo(['GOOG', 'AAPL', 'GOOG'])
150149
assert_series_equal(df.ix[0], df.ix[2])
151150

pandas/util/testing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1143,7 +1143,7 @@ def wrapper(*args, **kwargs):
11431143
try:
11441144
e_str = traceback.format_exc(e)
11451145
except:
1146-
e_Str = str(e)
1146+
e_str = str(e)
11471147

11481148
if any([m.lower() in e_str.lower() for m in _skip_on_messages]):
11491149
raise SkipTest("Skipping test because exception message is known"

0 commit comments

Comments
 (0)