Changeset - d741b99effdf
[Not reviewed]
default
0 1 0
Marc Abramowitz - 11 years ago 2015-04-22 20:44:05
marc@marc-abramowitz.com
tox.ini: Add .eggs to norecursedirs

This prevents py.test from trying to run tests in the .eggs directory, which
setuptools can create.
1 file changed with 1 insertions and 2 deletions:
tox.ini
1
2
0 comments (0 inline, 0 general)
tox.ini
Show inline comments
 
[pytest]
 
norecursedirs = kallithea/tests/scripts .tox
 

	
 
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}
0 comments (0 inline, 0 general)