Skip to content

Commit 42ab63e

Browse files
committed
RLS: 0.5.0
1 parent 05f7054 commit 42ab63e

File tree

2 files changed

+0
-16
lines changed

2 files changed

+0
-16
lines changed

README.rst

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,6 @@ How This Package is Structured
101101
following IEX Cloud endpoint groups are mapped to their respective
102102
``iexfinance`` modules:
103103

104-
- Account - ``account`` (`iexfinance docs <https://addisonlynch.github.io/iexfinance/stable/account.html>`__ | `IEX Docs <https://iexcloud.io/docs/api/#account>`__)
105-
- Stocks - ``stocks`` (`iexfinance docs <https://addisonlynch.github.io/iexfinance/stable/stocks.html>`__ | `IEX Docs <https://iexcloud.io/api/docs/#stocks>`__)
106-
- Alternative Data - ``altdata`` (`iexfinance docs <https://addisonlynch.github.io/iexfinance/stable/altdata.html>`__ | `IEX Cloud Docs <https://iexcloud.io/docs/api/#alternative-data>`__)
107-
- Reference Data - ``refdata`` (`iexfinance docs <http://addisonlynch.github.io/iexfinance/stable/refdata.html>`__ | `IEX Cloud Docs <https://iexcloud.io/docs/api/#reference-data>`__)
108-
- Investors Exchange Data - ``iexdata`` (`iexfinance docs <http://addisonlynch.github.io/iexfinance/stable/iexdata.html>`__ | `IEX Cloud Docs <https://iexcloud.io/docs/api/#investors-exchange-data>`__)
109-
- API System Metadata - ``apidata`` (`iexfinance docs <http://addisonlynch.github.io/iexfinance/stable/apistatus.html>`__ | `IEX Cloud Docs <https://iexcloud.io/docs/api/#api-system-metadata>`__)
110-
111104
The most commonly-used
112105
endpoints are the `Stocks <https://iexcloud.io/docs/api/#stocks>`__
113106
endpoints, which allow access to various information regarding equities,

iexfinance/tests/stocks/test_fundamentals.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,6 @@ def test_balance_sheet(self):
4646
assert isinstance(data["AAPL"], pd.DataFrame) and not data["AAPL"].empty
4747
assert isinstance(data["SVXY"], pd.DataFrame) and data["SVXY"].empty
4848

49-
@pytest.mark.xfail(
50-
reason="Provider bug. Will not return more than 3 " "periods.", strict=True
51-
)
5249
def test_balance_sheet_params(self):
5350
data = self.a.get_balance_sheet(last=4)
5451
assert len(data.index) == 4
@@ -59,9 +56,6 @@ def test_cash_flow(self):
5956
assert isinstance(data["AAPL"], pd.DataFrame) and not data["AAPL"].empty
6057
assert isinstance(data["SVXY"], pd.DataFrame) and data["SVXY"].empty
6158

62-
@pytest.mark.xfail(
63-
reason="Provider bug. Will not return more than 3 " "periods.", strict=True
64-
)
6559
def test_cash_flow_params(self):
6660
data = self.a.get_cash_flow(last=4)
6761
assert len(data.index) == 4
@@ -99,9 +93,6 @@ def test_income_statement(self):
9993
assert isinstance(data["AAPL"], pd.DataFrame) and not data["AAPL"].empty
10094
assert isinstance(data["SVXY"], pd.DataFrame) and data["SVXY"].empty
10195

102-
@pytest.mark.xfail(
103-
reason="Provider bug. Will not return more than 3 " "periods.", strict=True
104-
)
10596
def test_income_statement_params(self):
10697
data = self.a.get_income_statement(last=4)
10798
assert len(data.index) == 4

0 commit comments

Comments
 (0)