Skip to content

Commit 9713e45

Browse files
committed
Merge pull request #3816 from gliptak/patch-1
Tag yahoo data tests as @network only
2 parents e8a5318 + b8eee75 commit 9713e45

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pandas/io/tests/test_yahoo.py

-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
class TestYahoo(unittest.TestCase):
1616

17-
@slow
1817
@network
1918
def test_yahoo(self):
2019
# asserts that yahoo is minimally working and that it throws
@@ -41,14 +40,12 @@ def test_yahoo(self):
4140
raise
4241

4342

44-
@slow
4543
@network
4644
def test_get_quote(self):
4745
df = web.get_quote_yahoo(pd.Series(['GOOG', 'AAPL', 'GOOG']))
4846
assert_series_equal(df.ix[0], df.ix[2])
4947

5048

51-
@slow
5249
@network
5350
def test_get_components(self):
5451

@@ -69,7 +66,6 @@ def test_get_components(self):
6966
assert 'GOOG' in df.index
7067
assert 'AMZN' in df.index
7168

72-
@slow
7369
@network
7470
def test_get_data(self):
7571
import numpy as np

0 commit comments

Comments
 (0)