[Checkins] SVN: z3c.recipe.paster/trunk/s Fix test failure.

Marius Gedminas cvs-admin at zope.org
Fri Feb 22 06:47:57 UTC 2013


Log message for revision 129636:
  Fix test failure.
  
  The way zc.buildout.testing.install works is it takes eggs from the
  outer buildout and copies them into the inner one.  Therefore we must
  ensure the egg exists in the outer one, or not try to copy unneeded eggs.
  
  And since zope.browserpage is apparently no longer needed, drop it and
  (almost) all of its dependencies I'd added in r129557.

Changed:
  U   z3c.recipe.paster/trunk/setup.py
  U   z3c.recipe.paster/trunk/src/z3c/recipe/paster/tests.py

-=-
Modified: z3c.recipe.paster/trunk/setup.py
===================================================================
--- z3c.recipe.paster/trunk/setup.py	2013-02-22 05:38:26 UTC (rev 129635)
+++ z3c.recipe.paster/trunk/setup.py	2013-02-22 06:47:57 UTC (rev 129636)
@@ -16,7 +16,6 @@
 $Id: setup.py 82497 2007-12-28 14:59:22Z rogerineichen $
 """
 import os
-import xml.sax.saxutils
 from setuptools import setup, find_packages
 
 def read(*rnames):

Modified: z3c.recipe.paster/trunk/src/z3c/recipe/paster/tests.py
===================================================================
--- z3c.recipe.paster/trunk/src/z3c/recipe/paster/tests.py	2013-02-22 05:38:26 UTC (rev 129635)
+++ z3c.recipe.paster/trunk/src/z3c/recipe/paster/tests.py	2013-02-22 06:47:57 UTC (rev 129636)
@@ -24,7 +24,6 @@
     zc.buildout.testing.install('Paste', test)
     zc.buildout.testing.install('PasteDeploy', test)
     zc.buildout.testing.install('PasteScript', test)
-    zc.buildout.testing.install('RestrictedPython', test)
     zc.buildout.testing.install('WebOb', test)
     zc.buildout.testing.install('WebTest', test)
     zc.buildout.testing.install('ZConfig', test)
@@ -50,7 +49,6 @@
     zc.buildout.testing.install('zope.authentication', test)
     zc.buildout.testing.install('zope.broken', test)
     zc.buildout.testing.install('zope.browser', test)
-    zc.buildout.testing.install('zope.browserpage', test)
     zc.buildout.testing.install('zope.cachedescriptors', test)
     zc.buildout.testing.install('zope.component', test)
     zc.buildout.testing.install('zope.configuration', test)
@@ -58,7 +56,6 @@
     zc.buildout.testing.install('zope.contenttype', test)
     zc.buildout.testing.install('zope.copy', test)
     zc.buildout.testing.install('zope.deferredimport', test)
-    zc.buildout.testing.install('zope.deprecation', test)
     zc.buildout.testing.install('zope.dottedname', test)
     zc.buildout.testing.install('zope.error', test)
     zc.buildout.testing.install('zope.event', test)
@@ -70,7 +67,6 @@
     zc.buildout.testing.install('zope.lifecycleevent', test)
     zc.buildout.testing.install('zope.location', test)
     zc.buildout.testing.install('zope.minmax', test)
-    zc.buildout.testing.install('zope.pagetemplate', test)
     zc.buildout.testing.install('zope.processlifetime', test)
     zc.buildout.testing.install('zope.proxy', test)
     zc.buildout.testing.install('zope.publisher', test)
@@ -79,12 +75,9 @@
     zc.buildout.testing.install('zope.session', test)
     zc.buildout.testing.install('zope.site', test)
     zc.buildout.testing.install('zope.size', test)
-    zc.buildout.testing.install('zope.tal', test)
-    zc.buildout.testing.install('zope.tales', test)
     zc.buildout.testing.install('zope.testbrowser', test)
     zc.buildout.testing.install('zope.testing', test)
     zc.buildout.testing.install('zope.traversing', test)
-    zc.buildout.testing.install('zope.untrustedpython', test)
     zc.buildout.testing.install_develop('z3c.recipe.paster', test)
 
     if sys.version_info < (2, 7, 0):



More information about the checkins mailing list