Skip to content

Commit

Permalink
updated version to 3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jmfernandes committed Jul 6, 2023
1 parent e5be821 commit bc977b8
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
24 changes: 21 additions & 3 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,24 +27,42 @@ jobs:
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
- name: Test robinhood with pytest
env:
robin_username: ${{ secrets.username }}
robin_password: ${{ secrets.password }}
robin_mfa: ${{ secrets.mfa }}
account_number: ${{ secrets.account }}
zipcode: ${{ secrets.zipcode }}
crypto_account: ${{ secrets.crypto }}
run: |
pip install pytest
pip install pytest-dotenv
pip install python-dateutil
pytest tests/test_robinhood.py
- name: Test gemini with pytest
env:
account_number: ${{ secrets.account }}
zipcode: ${{ secrets.zipcode }}
crypto_account: ${{ secrets.crypto }}
gemini_account_key: ${{ secrets.gemini_account_key }}
gemini_account_secret: ${{ secrets.gemini_account_secret }}
gemini_sandbox_key: ${{ secrets.gemini_sandbox_key }}
gemini_sandbox_secret: ${{ secrets.gemini_sandbox_secret }}
run: |
pip install pytest
pip install pytest-dotenv
pip install python-dateutil
pytest tests/test_gemini.py
- name: Test TDA with pytest
env:
account_number: ${{ secrets.account }}
zipcode: ${{ secrets.zipcode }}
crypto_account: ${{ secrets.crypto }}
tda_encryption_passcode: ${{ secrets.tda_encryption_passcode }}
tda_order_account: ${{ secrets.tda_order_account }}
run: |
pip install pytest
pip install pytest-dotenv
pip install python-dateutil
pytest tests/test_robinhood.py
pytest tests/test_gemini.py
pytest tests/test_tda.py
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
long_description = f.read()

setup(name='robin_stocks',
version='3.0.4',
version='3.0.5',
description='A Python wrapper around the Robinhood API',
long_description=long_description,
long_description_content_type='text/x-rst',
Expand Down

0 comments on commit bc977b8

Please sign in to comment.