view tox.ini @ 6669:30d61922f24e

auth: fix crash on invalid bcrypt password When an invalid password was specified, it would with an exception: File "kallithea/lib/auth.py", in check_password return bcrypt.checkpw(safe_str(password), safe_str(hashed)) ValueError: Invalid hashed_password salt We do apparently have to catch ValueError and treat it as "invalid password".
author Mads Kiilerich <mads@kiilerich.com>
date Sun, 11 Jun 2017 15:02:09 +0200
parents dd676fdeda0f
children ab30729c735c
line wrap: on
line source

[tox]
minversion = 1.8
envlist = py{26,27}-pytest

[testenv]
setenv =
    PYTHONHASHSEED = 0
deps =
    -r{toxinidir}/dev_requirements.txt
    py26-pytest: unittest2
    python-ldap
    python-pam
commands =
    pytest: py.test {posargs}