diff --git a/.travis.yml b/.travis.yml index c933e3b..6fae2be 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,12 +3,11 @@ language: python python: - "2.6" - "2.7" - - "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 MySQL-python --quiet + - pip install nose simplejson Flask-SQLAlchemy Flask-MongoEngine Flask-Peewee py-bcrypt MySQL-python --quiet before_script: - mysql -e 'create database flask_security_test;' diff --git a/tox.ini b/tox.ini index 9746aea..411086c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26, py27, pypy +envlist = py26, py27 [testenv] deps = @@ -8,6 +8,6 @@ deps = Flask-SQLAlchemy Flask-MongoEngine Flask-Peewee - bcrypt + py-bcrypt commands = nosetests []