##// 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
Ronny Pfannschmidt
tests: add pytest section and put tox and tests/scripts to norecursedirs...
r5050 [pytest]
Marc Abramowitz
tox.ini: Add .eggs to norecursedirs...
r5059 norecursedirs = kallithea/tests/scripts .tox .eggs
Ronny Pfannschmidt
tests: add pytest section and put tox and tests/scripts to norecursedirs...
r5050
Marc Abramowitz
Add tox.ini
r5015 [tox]
Marc Abramowitz
tox.ini: Add nose and pytest deps
r5016 envlist = py{26,27}-{pytest,nose}
Marc Abramowitz
Add tox.ini
r5015
[testenv]
Marc Abramowitz
tox.ini: Set PYTHONHASHSEED = 0...
r5017 setenv =
PYTHONHASHSEED = 0
Marc Abramowitz
tox.ini: Add nose and pytest deps
r5016 deps =
nose: nose
pytest: pytest
commands =
nose: nosetests {posargs}
pytest: py.test {posargs}