Files @ 1666c8c7d925
Branch filter:

Location: kallithea/tox.ini

Mads Kiilerich
repo-scan: print status to stdout instead of logging it

Don't mute command line output just because the .ini file not is verbose.
[tox]
minversion = 1.8
envlist = py{26,27}-{pytest,nose}

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