Files @ 30c6d2ebf310
Branch filter:

Location: kallithea/tox.ini

Thomas De Schampheleire
comments: display username and name instead of only username

The full name is more significant to many people than a username.
[tox]
envlist = py{26,27}-{pytest,nose}

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