-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #206 from twindb/intergration-test
Fix integration tests on python 3
- Loading branch information
Showing
27 changed files
with
928 additions
and
924 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 |
---|---|---|
|
@@ -61,3 +61,4 @@ target/ | |
.DS_Store | ||
/vagrant/README.html | ||
/.pytest_cache/ | ||
/.venv/ |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 2.19.0 | ||
current_version = 2.20.0 | ||
commit = True | ||
tag = False | ||
|
||
|
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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
from os import environ | ||
|
||
__author__ = 'aleks' | ||
__author__ = "aleks" | ||
|
||
|
||
def ensure_aws_creds(): | ||
print('Integration tests need Amazon API credentials:') | ||
print(' AWS_ACCESS_KEY_ID') | ||
print(' AWS_SECRET_ACCESS_KEY') | ||
print("Integration tests need Amazon API credentials:") | ||
print(" AWS_ACCESS_KEY_ID") | ||
print(" AWS_SECRET_ACCESS_KEY") | ||
try: | ||
try: | ||
environ['AWS_ACCESS_KEY_ID'] | ||
environ["AWS_ACCESS_KEY_ID"] | ||
except KeyError: | ||
print('Environment variable AWS_ACCESS_KEY_ID is not defined.') | ||
environ['AWS_ACCESS_KEY_ID'] = raw_input('Please enter it: ') | ||
print("Environment variable AWS_ACCESS_KEY_ID is not defined.") | ||
environ["AWS_ACCESS_KEY_ID"] = input("Please enter it: ") | ||
try: | ||
environ['AWS_SECRET_ACCESS_KEY'] | ||
environ["AWS_SECRET_ACCESS_KEY"] | ||
except KeyError: | ||
print('Environment variable AWS_SECRET_ACCESS_KEY is not defined.') | ||
environ['AWS_SECRET_ACCESS_KEY'] = raw_input('Please enter it: ') | ||
print("Environment variable AWS_SECRET_ACCESS_KEY is not defined.") | ||
environ["AWS_SECRET_ACCESS_KEY"] = input("Please enter it: ") | ||
except KeyboardInterrupt: | ||
exit(1) |
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.