forked from hasgeek/funnel
-
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.
Use pytest-dotenv for test environment (hasgeek#1363)
- Loading branch information
Showing
13 changed files
with
106 additions
and
78 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Run Flask in testing environment | ||
FLASK_ENV='testing' | ||
|
||
# Mail settings | ||
MAIL_SERVER='localhost' | ||
MAIL_PORT=25 | ||
MAIL_DEFAULT_SENDER='[email protected]' | ||
SITE_SUPPORT_EMAIL='' | ||
ADMINS='' | ||
|
||
#: Keys for tests specifically | ||
FACEBOOK_OAUTH_TOKEN='' | ||
|
||
#: Twitter integration | ||
OAUTH_TWITTER_KEY='' | ||
OAUTH_TWITTER_SECRET='' | ||
|
||
#: GitHub integration | ||
OAUTH_GITHUB_KEY='' | ||
OAUTH_GITHUB_SECRET='' | ||
|
||
#: Google integration | ||
OAUTH_GOOGLE_KEY='' | ||
OAUTH_GOOGLE_SECRET='' | ||
|
||
#: Recaptcha for the registration form | ||
RECAPTCHA_PUBLIC_KEY='' | ||
RECAPTCHA_PRIVATE_KEY='' | ||
|
||
#: Boxoffice settings for sync tests in Cypress | ||
CYPRESS_BOXOFFICE_SECRET_KEY='' | ||
CYPRESS_BOXOFFICE_ACCESS_KEY'' | ||
CYPRESS_BOXOFFICE_IC_ID= | ||
CYPRESS_BOXOFFICE_CLIENT_ID='' | ||
|
||
#: Google Maps API key | ||
GOOGLE_MAPS_API_KEY='' | ||
|
||
#: YouTube API key | ||
YOUTUBE_API_KEY='' | ||
|
||
#: Twilio SID | ||
SMS_TWILIO_SID='' | ||
#: Twilio Token | ||
SMS_TWILIO_TOKEN='' | ||
#: Twilio test number | ||
SMS_TWILIO_FROM='+15005550006' | ||
|
||
#: Vimeo client id | ||
VIMEO_CLIENT_ID='' | ||
#: Vimeo client secret | ||
VIMEO_CLIENT_SECRET='' | ||
#: Vimeo access token | ||
VIMEO_ACCESS_TOKEN='' |
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
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 |
---|---|---|
|
@@ -44,6 +44,7 @@ pycountry | |
pyIsEmail | ||
pymdown-extensions | ||
python-dateutil | ||
python-dotenv | ||
pytz | ||
PyVimeo | ||
qrcode | ||
|
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
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 |
---|---|---|
|
@@ -4,4 +4,5 @@ lxml | |
pytest | ||
pytest-bdd | ||
pytest-cov | ||
pytest-dotenv | ||
requests-mock |
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
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