[Checkins] SVN: z3c.recipe.paster/trunk/src/z3c/recipe/paster/tests.py Fix the old test failure about BTrees.

Marius Gedminas cvs-admin at zope.org
Thu Feb 14 07:42:15 UTC 2013


Log message for revision 129372:
  Fix the old test failure about BTrees.
  
  There's this zc.buildout.testing thing which I know nothing about.
  Apparently z3c.recipe.paster's tests started failing when ZODB3 was
  exploded into a bunch of smaller packages (persistent, BTrees, ZODB,
  ZEO), since apparently the buildout testing environment knows about real
  deps but won't fetch them unless explicitly instructed.

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

-=-
Modified: z3c.recipe.paster/trunk/src/z3c/recipe/paster/tests.py
===================================================================
--- z3c.recipe.paster/trunk/src/z3c/recipe/paster/tests.py	2013-02-14 07:42:13 UTC (rev 129371)
+++ z3c.recipe.paster/trunk/src/z3c/recipe/paster/tests.py	2013-02-14 07:42:15 UTC (rev 129372)
@@ -28,6 +28,10 @@
     zc.buildout.testing.install('WebTest', test)
     zc.buildout.testing.install('ZConfig', test)
     zc.buildout.testing.install('ZODB3', test)
+    zc.buildout.testing.install('ZODB', test)
+    zc.buildout.testing.install('ZEO', test)
+    zc.buildout.testing.install('BTrees', test)
+    zc.buildout.testing.install('persistent', test)
     zc.buildout.testing.install('mechanize', test)
     zc.buildout.testing.install('pytz', test)
     zc.buildout.testing.install('transaction', test)



More information about the checkins mailing list