Files @ 4e40640c43e5
Branch filter:

Location: kallithea/tox.ini

domruf
alembic: check database version before starting kallithea

Running kallithea with the wrong database version could be dangerous.
Therefore, check for the correct version before starting Kallithea.
[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}