Skip to content

Commit

Permalink
urllib3 return to 1, remove FXIT from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
artyl committed Dec 22, 2023
1 parent 074e2e4 commit 50db64c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docker/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ soupsieve==2.2.1
typing_extensions==4.5.0
tzdata==2021.1
tzlocal==3.0
urllib3==2.1.0
urllib3==1.26.18
websocket-client==1.5.1
websockets==9.1
2 changes: 1 addition & 1 deletion docker/requirements_arm.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ soupsieve==2.2.1
typing_extensions==4.5.0
tzdata==2021.1
tzlocal==3.0
urllib3==2.1.0
urllib3==1.26.18
websocket-client==1.5.1
#websockets==9.1 installed by playwright dependency
2 changes: 1 addition & 1 deletion docker/requirements_win.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ soupsieve==2.2.1
typing_extensions==4.5.0
tzdata==2021.1
tzlocal==3.0
urllib3==2.1.0
urllib3==1.26.18
websocket-client==1.5.1
websockets==9.1
6 changes: 3 additions & 3 deletions tests/test_stock.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ def setup():

def test_stock(prepare_ini):
assert stock.get_yahoo('YAHOO', 'TSLA', 1)['price'] > 0
assert stock.get_finex('FINEX', 'FXIT', 1)['price'] > 0
# assert stock.get_finex('FINEX', 'FXIT', 1)['price'] > 0 # delisting
assert stock.get_moex('M_TQBR', 'TATNP', 1)['price'] > 0
assert stock.get_moex('M_TQTF', 'FXIT', 1)['price'] > 0
assert stock.get_moex('M_TQTD', 'FXIT', 1)['price'] > 0
# assert stock.get_moex('M_TQTF', 'FXIT', 1)['price'] > 0 # delisting
# assert stock.get_moex('M_TQTD', 'FXIT', 1)['price'] > 0 # delisting

assert stock.get_balance('broker_ru', '123', 'test_stock')['Balance'] > 0

0 comments on commit 50db64c

Please sign in to comment.