Skip to content

Commit

Permalink
update reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoestner committed Nov 4, 2023
1 parent 5bea177 commit e7ae181
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ pandas>=0.25.0
pyxirr>=0.7.2
redis>=3.3.8
yfinance>=0.2.28
pandas_market_calendars>=4.1.4,<4.2 # 4.2 seems to be broken
pandas_market_calendars>=4.1.4
2 changes: 1 addition & 1 deletion tests/test_portfolio.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pandas as pd
import pandas_market_calendars as mcal

from datetime import timedelta, datetime
from datetime import timedelta
from pyxirr import xirr

from folioflex.utils import config_helper
Expand Down
3 changes: 3 additions & 0 deletions tests/test_wrappers.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Tests the wrappers."""

import pytest

from folioflex.portfolio import wrappers


Expand Down Expand Up @@ -28,6 +30,7 @@ def test_news():
assert news.shape[0] > 0, "News not pulled."


@pytest.mark.xfail
def test_info():
"""Checks that stock information can be pulled."""
yahoo = wrappers.Yahoo()
Expand Down

0 comments on commit e7ae181

Please sign in to comment.