2013-02-28 22:32:52 -05:00
|
|
|
language: python
|
2014-12-28 15:37:13 +02:00
|
|
|
sudo: false
|
2013-02-28 22:32:52 -05:00
|
|
|
python:
|
2013-10-03 20:34:13 -04:00
|
|
|
- 2.6
|
2013-02-28 22:32:52 -05:00
|
|
|
- 2.7
|
2013-07-08 21:18:19 -04:00
|
|
|
env:
|
|
|
|
matrix:
|
2015-02-14 12:03:53 -05:00
|
|
|
- BOTO_VERSION=2.36.0
|
2014-08-26 13:25:50 -04:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- python: "3.3"
|
2015-02-14 12:03:53 -05:00
|
|
|
env: BOTO_VERSION=2.36.0
|
2013-02-28 22:32:52 -05:00
|
|
|
install:
|
2014-11-29 22:57:08 -05:00
|
|
|
- travis_retry pip install boto==$BOTO_VERSION
|
2015-08-01 19:35:09 -04:00
|
|
|
- travis_retry pip install boto3
|
2014-11-29 22:57:08 -05:00
|
|
|
- travis_retry pip install .
|
|
|
|
- travis_retry pip install -r requirements-dev.txt
|
|
|
|
- travis_retry pip install coveralls
|
2013-03-10 22:34:30 -04:00
|
|
|
script:
|
2013-03-10 22:38:18 -04:00
|
|
|
- make test
|
2013-03-10 22:34:30 -04:00
|
|
|
after_success:
|
2013-06-27 00:04:05 -04:00
|
|
|
- coveralls
|