Files
flask-security/.travis.yml
T
2012-09-16 22:27:21 -04:00

23 lines
463 B
YAML

language: python
python:
- "2.6"
- "2.7"
install:
- pip install . --quiet --use-mirrors
- "if [[ $TRAVIS_PYTHON_VERSION != '2.7' ]]; then pip install importlib simplejson --quiet --use-mirrors; fi"
- pip install nose Flask-SQLAlchemy Flask-MongoEngine Flask-Mail py-bcrypt MySQL-python --quiet --use-mirrors
before_script:
- mysql -e 'create database flask_security_test;'
services:
- mongodb
script: nosetests
branches:
only:
- develop