We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e8a5318 + b8eee75 commit 9713e45Copy full SHA for 9713e45
pandas/io/tests/test_yahoo.py
@@ -14,7 +14,6 @@
14
15
class TestYahoo(unittest.TestCase):
16
17
- @slow
18
@network
19
def test_yahoo(self):
20
# asserts that yahoo is minimally working and that it throws
@@ -41,14 +40,12 @@ def test_yahoo(self):
41
40
raise
42
43
44
45
46
def test_get_quote(self):
47
df = web.get_quote_yahoo(pd.Series(['GOOG', 'AAPL', 'GOOG']))
48
assert_series_equal(df.ix[0], df.ix[2])
49
50
51
52
53
def test_get_components(self):
54
@@ -69,7 +66,6 @@ def test_get_components(self):
69
66
assert 'GOOG' in df.index
70
67
assert 'AMZN' in df.index
71
68
72
73
74
def test_get_data(self):
75
import numpy as np
0 commit comments