diff --git a/pandas/io/tests/test_yahoo.py b/pandas/io/tests/test_yahoo.py index b79fdad2bff9d..0e2c2022af422 100644 --- a/pandas/io/tests/test_yahoo.py +++ b/pandas/io/tests/test_yahoo.py @@ -14,7 +14,6 @@ class TestYahoo(unittest.TestCase): - @slow @network def test_yahoo(self): # asserts that yahoo is minimally working and that it throws @@ -41,14 +40,12 @@ def test_yahoo(self): raise - @slow @network def test_get_quote(self): df = web.get_quote_yahoo(pd.Series(['GOOG', 'AAPL', 'GOOG'])) assert_series_equal(df.ix[0], df.ix[2]) - @slow @network def test_get_components(self): @@ -69,7 +66,6 @@ def test_get_components(self): assert 'GOOG' in df.index assert 'AMZN' in df.index - @slow @network def test_get_data(self): import numpy as np