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 26, 2017
1 parent 2e438ee commit 7a59814
Show file tree
Hide file tree
Showing 12 changed files with 617 additions and 244 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ matrix:
- env: TOXENV=py36-mypy WITH_RUST=false

before_install:
# https://github.com/travis-ci/travis-ci/issues/7940
#https://github.com/travis-ci/travis-ci/issues/7940
- sudo rm -f /etc/boto.cfg

install:
Expand Down
8 changes: 6 additions & 2 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 =
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
4 changes: 4 additions & 0 deletions automock/credentials
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[default]
aws_access_key_id=SomeKey
aws_secret_access_key=SomeKey
aws_session_token=
3 changes: 3 additions & 0 deletions autopush/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
__version__ = '1.38.0' # pragma: nocover

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

0 comments on commit 7a59814

Please sign in to comment.