diff --git a/.travis.yml b/.travis.yml index 6fae2be..c6eccd0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,15 +7,12 @@ python: 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 py-bcrypt MySQL-python --quiet - -before_script: - - mysql -e 'create database flask_security_test;' + - pip install tox simplejson Flask-SQLAlchemy Flask-MongoEngine Flask-Peewee bcrypt --quiet services: - mongodb -script: nosetests +script: tox branches: only: diff --git a/tox.ini b/tox.ini index 411086c..02e47ae 100644 --- a/tox.ini +++ b/tox.ini @@ -8,6 +8,6 @@ deps = Flask-SQLAlchemy Flask-MongoEngine Flask-Peewee - py-bcrypt + bcrypt commands = nosetests []