Files @ 071777309be1
Branch filter:

Location: kallithea/tox.ini

Thomas De Schampheleire
admin: e-mail: don't repeat the e-mail settings from the .ini file

None of the settings from the .ini file are currently listed in the admin
interface, except for e-mail. There is no need for such an exception: either
we list all settings or none.
[tox]
envlist = py{26,27}-{pytest,nose}

[testenv]
setenv =
    PYTHONHASHSEED = 0
deps =
    nose: nose
    pytest: pytest
commands =
    nose: nosetests {posargs}
    pytest: py.test {posargs}