Use bcrypt instead of py-bcrypt

This commit is contained in:
Matt Wright
2013-09-03 13:00:03 -04:00
parent 6b3d65d6d6
commit 13422e046f
2 changed files with 14 additions and 1 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ 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
- pip install nose simplejson Flask-SQLAlchemy Flask-MongoEngine Flask-Peewee bcrypt MySQL-python --quiet
before_script:
- mysql -e 'create database flask_security_test;'
+13
View File
@@ -0,0 +1,13 @@
[tox]
envlist = py26, py27, pypy
[testenv]
deps =
nose
simplejson
Flask-SQLAlchemy
Flask-MongoEngine
Flask-Peewee
bcrypt
commands = nosetests []