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

Commit

Permalink
Merge pull request #1061 from mozilla-services/feat/1049
Browse files Browse the repository at this point in the history
feat: convert to use AWS boto3
  • Loading branch information
bbangert authored Nov 3, 2017
2 parents fa47b5c + 0278472 commit bc32908
Show file tree
Hide file tree
Showing 19 changed files with 742 additions and 354 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
8 changes: 5 additions & 3 deletions automock/boto.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
[Credentials]
aws_access_key_id =
aws_secret_access_key =
[default]

[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 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_EXPIRY = 2592000 # pragma: nocover
Loading

0 comments on commit bc32908

Please sign in to comment.