mirror of
https://github.com/wassname/flask-security.git
synced 2026-08-11 11:18:40 +08:00
22 lines
374 B
YAML
22 lines
374 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "3.3"
|
|
- "pypy"
|
|
|
|
install:
|
|
- pip install . --quiet
|
|
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install importlib --quiet --use-mirrors; fi"
|
|
- pip install nose simplejson Flask-SQLAlchemy Flask-MongoEngine Flask-Peewee bcrypt --quiet
|
|
|
|
services:
|
|
- mongodb
|
|
|
|
script: nosetests
|
|
|
|
branches:
|
|
only:
|
|
- develop
|