How should I test AWS S3 with moto on Travis?

1.9k Views Asked by At

Moto needs a credentials file, which does not exist on Travis. Travis fails with

botocore.exceptions.NoCredentialsError: Unable to locate credentials

See example / code.

How can I fix this for travis? (Locally, it works)

What I tried

I added the following environment variables (source) to my .travis.yml:

env:
  global:
    - AWS_ACCESS_KEY_ID=dummy-access-key
    - AWS_SECRET_ACCESS_KEY=dummy-access-key-secret
    - AWS_DEFAULT_REGION=us-east-1

I still get the same error. The versions in this build are:

  • boto: 2.49.0
  • boto3: 1.9.41
  • botocore: 1.12.41
  • moto: 1.3.7
0

There are 0 best solutions below