mirror of
https://github.com/wassname/flask-security.git
synced 2026-08-07 11:22:21 +08:00
24 lines
487 B
YAML
24 lines
487 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "pypy"
|
|
|
|
install:
|
|
- pip install . --quiet --use-mirrors
|
|
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install importlib --quiet --use-mirrors; fi"
|
|
- pip install nose simplejson Flask-SQLAlchemy Flask-MongoEngine Flask-Peewee 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
|