Files @ d741b99effdf
Branch filter:

Location: kallithea/tox.ini

Marc Abramowitz
tox.ini: Add .eggs to norecursedirs

This prevents py.test from trying to run tests in the .eggs directory, which
setuptools can create.
[pytest]
norecursedirs = kallithea/tests/scripts .tox .eggs

[tox]
envlist = py{26,27}-{pytest,nose}

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