Files @ 8c1258f69892
Branch filter:

Location: kallithea/tox.ini

Mads Kiilerich
tests: Move pytest config (norecursedirs) from tox.ini to setup.cfg

Avoid (conceptual) dependency on the tox meta test runner configuration.
[tox]
envlist = py{26,27}-{pytest,nose}

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