##// END OF EJS Templates
tox.ini: Add .eggs to norecursedirs...
tox.ini: Add .eggs to norecursedirs This prevents py.test from trying to run tests in the .eggs directory, which setuptools can create.

File last commit:

r5059:d741b99e default
r5059:d741b99e default
Show More
tox.ini
15 lines | 256 B | text/x-ini | IniLexer
[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}