view tox.ini @ 6243:457f1de3ec5d

model: rename db.BaseModel to avoid confusion with base.BaseModel There exist two BaseModel classes in kallithea.model: - kallithea.model.base.BaseModel (previously kallithea.model.BaseModel) - kallithea.model.db.BaseModel Needless to say, this is very confusing, so rename one of them.
author Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
date Sun, 25 Sep 2016 15:11:14 +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}