Skip to content

Commit

Permalink
Merge pull request #3816 from gliptak/patch-1
Browse files Browse the repository at this point in the history
Tag yahoo data tests as @network only
  • Loading branch information
wesm committed Jun 10, 2013
2 parents e8a5318 + b8eee75 commit 9713e45
Showing 1 changed file with 0 additions and 4 deletions.
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

0 comments on commit 9713e45

Please sign in to comment.