@@ -46,9 +46,6 @@ def test_balance_sheet(self):
46
46
assert isinstance (data ["AAPL" ], pd .DataFrame ) and not data ["AAPL" ].empty
47
47
assert isinstance (data ["SVXY" ], pd .DataFrame ) and data ["SVXY" ].empty
48
48
49
- @pytest .mark .xfail (
50
- reason = "Provider bug. Will not return more than 3 " "periods." , strict = True
51
- )
52
49
def test_balance_sheet_params (self ):
53
50
data = self .a .get_balance_sheet (last = 4 )
54
51
assert len (data .index ) == 4
@@ -59,9 +56,6 @@ def test_cash_flow(self):
59
56
assert isinstance (data ["AAPL" ], pd .DataFrame ) and not data ["AAPL" ].empty
60
57
assert isinstance (data ["SVXY" ], pd .DataFrame ) and data ["SVXY" ].empty
61
58
62
- @pytest .mark .xfail (
63
- reason = "Provider bug. Will not return more than 3 " "periods." , strict = True
64
- )
65
59
def test_cash_flow_params (self ):
66
60
data = self .a .get_cash_flow (last = 4 )
67
61
assert len (data .index ) == 4
@@ -99,9 +93,6 @@ def test_income_statement(self):
99
93
assert isinstance (data ["AAPL" ], pd .DataFrame ) and not data ["AAPL" ].empty
100
94
assert isinstance (data ["SVXY" ], pd .DataFrame ) and data ["SVXY" ].empty
101
95
102
- @pytest .mark .xfail (
103
- reason = "Provider bug. Will not return more than 3 " "periods." , strict = True
104
- )
105
96
def test_income_statement_params (self ):
106
97
data = self .a .get_income_statement (last = 4 )
107
98
assert len (data .index ) == 4
0 commit comments