moto/.travis.yml
Jesse Szwedko 55f39265dd Upgrade to boto 2.45 (#803)
Adds support for additional regions:

* ca-central-1
* eu-west-2

Signed-off-by: Andrew Harris <andrew.harris@getbraintree.com>
2017-01-18 22:55:22 -05:00

23 lines
441 B
YAML

language: python
sudo: false
python:
- 2.6
- 2.7
env:
matrix:
- BOTO_VERSION=2.45.0
matrix:
include:
- python: "3.3"
env: BOTO_VERSION=2.45.0
install:
- travis_retry pip install boto==$BOTO_VERSION
- travis_retry pip install boto3
- travis_retry pip install .
- travis_retry pip install -r requirements-dev.txt
- travis_retry pip install coveralls
script:
- make test
after_success:
- coveralls