<div dir="ltr">This is cool. I would add .eggs to norecursedirs as this is something that newer versions of setuptools create. With the patch below, I am able to get everything to pass with pytest:<div><br></div><div>```</div><div>$ tox -e py27-pytest</div><div>...</div><div><div>==================================== 1589 passed, 31 skipped in 223.10 seconds =====================================</div><div>______________________________________________ summary __________________________________________________________<br></div><div>  py27-pytest: commands succeeded</div><div>  congratulations :)</div></div><div>```</div><div><br></div><div>Patch:<br><div><br></div><div>```diff</div><div><div>diff --git a/tox.ini b/tox.ini</div><div>--- a/tox.ini</div><div>+++ b/tox.ini</div><div>@@ -1,6 +1,5 @@</div><div> [pytest]</div><div>-norecursedirs = kallithea/tests/scripts .tox</div><div>-</div><div>+norecursedirs = kallithea/tests/scripts .tox .eggs</div><div><br></div><div> [tox]</div><div> envlist = py{26,27}-{pytest,nose}</div></div><div>```</div><div><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Apr 20, 2015 at 10:26 PM, Ronny Pfannschmidt <span dir="ltr"><<a href="mailto:opensource@ronnypfannschmidt.de" target="_blank">opensource@ronnypfannschmidt.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"># HG changeset patch<br>
# User Ronny Pfannschmidt <<a href="mailto:opensource@ronnypfannschmidt.de">opensource@ronnypfannschmidt.de</a>><br>
# Date 1429555101 -7200<br>
#      Mon Apr 20 20:38:21 2015 +0200<br>
# Node ID b91b4caf0f35712a6c4f20cdb1afe3257284711c<br>
# Parent  5a051d86fc6325c609712beab1bdf1b3447e45f9<br>
tests: add pytest section and put tox and tests/scripts to norecursedirs<br>
<br>
kallithea/tests/scripts are non-integrated messy tests<br>
that cant be part of a testsuite as is<br>
<br>
diff --git a/tox.ini b/tox.ini<br>
--- a/tox.ini<br>
+++ b/tox.ini<br>
@@ -1,3 +1,7 @@<br>
+[pytest]<br>
+norecursedirs = kallithea/tests/scripts .tox<br>
+<br>
+<br>
 [tox]<br>
 envlist = py{26,27}-{pytest,nose}<br>
<br>
<br>_______________________________________________<br>
kallithea-general mailing list<br>
<a href="mailto:kallithea-general@sfconservancy.org">kallithea-general@sfconservancy.org</a><br>
<a href="http://lists.sfconservancy.org/mailman/listinfo/kallithea-general" target="_blank">http://lists.sfconservancy.org/mailman/listinfo/kallithea-general</a><br>
<br></blockquote></div><br></div>