mirror of
https://github.com/wassname/flask-s3.git
synced 2026-06-27 15:50:06 +08:00
15 lines
396 B
YAML
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
|