forked from jmfernandes/robin_stocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improved testing framework to only use Pytest and to use .env instead of configparser
- Loading branch information
1 parent
1761366
commit d36b54f
Showing
10 changed files
with
497 additions
and
509 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,25 @@ | ||
# general things to ignore | ||
# sensitive environment information | ||
.env | ||
data.pickle | ||
.vscode/ | ||
|
||
# build and distribution files that are auto-generated | ||
build/ | ||
dist/ | ||
|
||
# notes to self | ||
uploadnotes.txt | ||
config.ini | ||
|
||
# testing | ||
tests/app_tests.py | ||
|
||
# generated app info | ||
.vscode/ | ||
.DS_Store | ||
.pypirc | ||
.cache/v/cache/ | ||
*.egg-info/ | ||
*.egg | ||
*.py[cod] | ||
__pycache__/ | ||
*.so | ||
*~ | ||
|
||
.pypirc | ||
|
||
tests/test_app.py | ||
|
||
.cache/v/cache/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#Fill me out with all your personal information to allow PyTest to work! | ||
#For extra security, change the name of the file to simply ".env" instead of ".test.env" | ||
robin_mfa= | ||
robin_username= | ||
robin_password= | ||
account_number= | ||
zipcode= | ||
crypto_account= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[pytest] | ||
env_files = | ||
.env | ||
.test.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.