17 lines
275 B
YAML
17 lines
275 B
YAML
language: python
|
|
python:
|
|
- 2.7
|
|
env:
|
|
matrix:
|
|
- BOTO_VERSION=2.9
|
|
- BOTO_VERSION=2.8
|
|
- BOTO_VERSION=2.7
|
|
install:
|
|
- pip install boto==$BOTO_VERSION
|
|
- pip install .
|
|
- pip install -r requirements.txt
|
|
script:
|
|
- make test
|
|
after_success:
|
|
- coveralls
|