Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tag yahoo data tests as @network only #3816

Merged
merged 1 commit into from
Jun 10, 2013
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