[Checkins] SVN: zope.exceptions/branches/tseaver-no_2to3/tox.ini Work around pip's namespace package brokenness.

Tres Seaver cvs-admin at zope.org
Fri Apr 6 19:48:36 UTC 2012


Log message for revision 125035:
  Work around pip's namespace package brokenness.

Changed:
  U   zope.exceptions/branches/tseaver-no_2to3/tox.ini

-=-
Modified: zope.exceptions/branches/tseaver-no_2to3/tox.ini
===================================================================
--- zope.exceptions/branches/tseaver-no_2to3/tox.ini	2012-04-06 19:47:52 UTC (rev 125034)
+++ zope.exceptions/branches/tseaver-no_2to3/tox.ini	2012-04-06 19:48:32 UTC (rev 125035)
@@ -18,6 +18,11 @@
 basepython =
     python2.6
 commands = 
+#   The installed version messes up nose's test discovery / coverage reporting
+#   So, we uninstall that from the environment, and then install the editable
+#   version, before running nosetests.
+    pip uninstall -y zope.exceptions
+    pip install -e .
     nosetests --with-xunit --with-xcoverage
 deps =
     zope.interface



More information about the checkins mailing list