Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions pandas/io/tests/test_yahoo.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

class TestYahoo(unittest.TestCase):

@slow
@network
def test_yahoo(self):
# asserts that yahoo is minimally working and that it throws
Expand All @@ -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):

Expand All @@ -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
Expand Down