Files
2015-09-28 16:36:25 +01:00

15 lines
396 B
YAML

language: python
python:
- "2.7"
# - "3.2" # 3.2 is broken, for some reason
- "3.3"
- "3.4"
- "3.5"
- "nightly"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt
# command to run tests, e.g. python setup.py test
script: nosetests --with-coverage --cover-package=flask_s3
after_success: coveralls
sudo: false