Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run AWS SDK tests on Python 3.7 #5414

Merged
merged 4 commits into from
Aug 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ matrix:
# https://github.com/paramiko/paramiko/pull/1723 is merged
# - python: 2.7
# env: DOWNSTREAM=paramiko
- python: 2.7
- python: 3.7
env: DOWNSTREAM=aws-encryption-sdk
- python: 2.7
- python: 3.7
# BOTO_CONFIG works around this boto issue on travis:
# https://github.com/boto/boto/issues/3717
env: DOWNSTREAM=dynamodb-encryption-sdk BOTO_CONFIG=/dev/null
Expand Down
2 changes: 1 addition & 1 deletion .travis/downstream.d/aws-encryption-sdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ case "${1}" in
cd aws-encryption-sdk-python
git rev-parse HEAD
pip install -e .
pip install -r test/upstream-requirements-py27.txt
pip install -r test/upstream-requirements-py37.txt
;;
run)
cd aws-encryption-sdk-python
Expand Down
2 changes: 1 addition & 1 deletion .travis/downstream.d/dynamodb-encryption-sdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ case "${1}" in
cd aws-dynamodb-encryption-python
git rev-parse HEAD
pip install -e .
pip install -r test/upstream-requirements-py27.txt
pip install -r test/upstream-requirements-py37.txt
;;
run)
cd aws-dynamodb-encryption-python
Expand Down