# HG changeset patch # User Marc Abramowitz # Date 2015-04-22 20:44:05 # Node ID d741b99effdf396b8391814b26545451d138ab5b # Parent c5829bc7d0907068e222f62fac4d400acf02f363 tox.ini: Add .eggs to norecursedirs This prevents py.test from trying to run tests in the .eggs directory, which setuptools can create. diff --git a/tox.ini b/tox.ini --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,5 @@ [pytest] -norecursedirs = kallithea/tests/scripts .tox - +norecursedirs = kallithea/tests/scripts .tox .eggs [tox] envlist = py{26,27}-{pytest,nose}