Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Commit

Permalink
feat: convert to use AWS boto3
Browse files Browse the repository at this point in the history
Issue #1050
Closes #1049
  • Loading branch information
jrconlin committed Oct 27, 2017
1 parent 4ef57a2 commit 354530c
Show file tree
Hide file tree
Showing 13 changed files with 624 additions and 242 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ install:
- pip install tox ${CODECOV:+codecov}
- if [ ${WITH_RUST:-true} != "false" ]; then curl https://sh.rustup.rs | sh -s -- -y || travis_terminate 1; fi
- export PATH=$PATH:$HOME/.cargo/bin
- export AWS_SHARED_CREDENTIALS_FILE=./automock/credentials.cfg
- export BOTO_CONFIG=./automock/boto.cfg
script:
- tox -- ${CODECOV:+--with-coverage --cover-xml --cover-package=autopush}
after_success:
Expand Down
10 changes: 7 additions & 3 deletions automock/boto.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
[Credentials]
aws_access_key_id =
aws_secret_access_key =
[default]
aws_access_key_id = SomeKey
aws_secret_access_key = SomeKey

[Boto]
is_secure = False
https_validate_certificates = False
proxy_port = 8000
proxy = 127.0.0.1

[DynamoDB]
region=us-east-1
validate_checksums=False
3 changes: 3 additions & 0 deletions automock/credentials.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[default]
aws_access_key_id = SomeKey
aws_secret_access_key = SomeKey
3 changes: 3 additions & 0 deletions autopush/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
__version__ = '1.39.0' # pragma: nocover

# Max DynamoDB record lifespan (~ 30 days)
MAX_EXPRY = 2592000 # pragma: nocover
Loading

0 comments on commit 354530c

Please sign in to comment.