[Checkins] SVN: z3c.recipe.i18n/trunk/ fix test setup and tests

Roger Ineichen roger at projekt01.ch
Wed Jan 21 22:39:50 EST 2009


Log message for revision 94918:
  fix test setup and tests

Changed:
  U   z3c.recipe.i18n/trunk/CHANGES.txt
  U   z3c.recipe.i18n/trunk/setup.py
  U   z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/README.txt
  U   z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/i18n.py
  U   z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/tests.py

-=-
Modified: z3c.recipe.i18n/trunk/CHANGES.txt
===================================================================
--- z3c.recipe.i18n/trunk/CHANGES.txt	2009-01-22 03:27:27 UTC (rev 94917)
+++ z3c.recipe.i18n/trunk/CHANGES.txt	2009-01-22 03:39:50 UTC (rev 94918)
@@ -5,6 +5,8 @@
 Version 0.5.1dev (unreleased)
 -----------------------------
 
+- fix tests
+
 - Updated docs to render nicely when fed to docutils. [ulif]
 
 - Added `zip_safe` flag in `setup.py` to avoid meaningless warnings

Modified: z3c.recipe.i18n/trunk/setup.py
===================================================================
--- z3c.recipe.i18n/trunk/setup.py	2009-01-22 03:27:27 UTC (rev 94917)
+++ z3c.recipe.i18n/trunk/setup.py	2009-01-22 03:39:50 UTC (rev 94918)
@@ -63,6 +63,7 @@
         test = [
             'zope.testing',
             'zope.app.locales',
+            'zc.lockfile',
             ],
         ),
     install_requires = [
@@ -72,6 +73,7 @@
         'zc.recipe.egg',
         'zope.testing',
         'zope.configuration',
+        'zc.lockfile',
         ],
     entry_points = {
         'zc.buildout': [

Modified: z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/README.txt
===================================================================
--- z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/README.txt	2009-01-22 03:27:27 UTC (rev 94917)
+++ z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/README.txt	2009-01-22 03:39:50 UTC (rev 94918)
@@ -139,7 +139,7 @@
   import sys
   sys.path[0:0] = [
   ...
-   ]
+    ]
   <BLANKLINE>
   import os
   sys.argv[0] = os.path.abspath(sys.argv[0])

Modified: z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/i18n.py
===================================================================
--- z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/i18n.py	2009-01-22 03:27:27 UTC (rev 94917)
+++ z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/i18n.py	2009-01-22 03:39:50 UTC (rev 94918)
@@ -168,3 +168,5 @@
             ))
 
         return generated
+
+    update = install

Modified: z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/tests.py
===================================================================
--- z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/tests.py	2009-01-22 03:27:27 UTC (rev 94917)
+++ z3c.recipe.i18n/trunk/src/z3c/recipe/i18n/tests.py	2009-01-22 03:39:50 UTC (rev 94918)
@@ -31,8 +31,12 @@
     zc.buildout.testing.install_develop('z3c.recipe.i18n', test)
     zc.buildout.testing.install_develop('zc.recipe.egg', test)
     zc.buildout.testing.install_develop('zdaemon', test)
+    zc.buildout.testing.install_develop('docutils', test)
+    zc.buildout.testing.install_develop('zope.browser', test)
     zc.buildout.testing.install_develop('zodbcode', test)
     zc.buildout.testing.install_develop('zope.annotation', test)
+    zc.buildout.testing.install_develop('zc.lockfile', test)
+    zc.buildout.testing.install_develop('transaction', test)
     zc.buildout.testing.install_develop('zope.app.applicationcontrol', test)
     zc.buildout.testing.install_develop('zope.app.appsetup', test)
     zc.buildout.testing.install_develop('zope.app.authentication', test)
@@ -60,7 +64,6 @@
     zc.buildout.testing.install_develop('zope.app.rotterdam', test)
     zc.buildout.testing.install_develop('zope.app.schema', test)
     zc.buildout.testing.install_develop('zope.app.security', test)
-    zc.buildout.testing.install_develop('zope.app.session', test)
     zc.buildout.testing.install_develop('zope.app.testing', test)
     zc.buildout.testing.install_develop('zope.app.wsgi', test)
     zc.buildout.testing.install_develop('zope.app.zapi', test)
@@ -88,7 +91,6 @@
     zc.buildout.testing.install_develop('zope.lifecycleevent', test)
     zc.buildout.testing.install_develop('zope.location', test)
     zc.buildout.testing.install_develop('zope.minmax', test)
-    zc.buildout.testing.install_develop('zope.modulealias', test)
     zc.buildout.testing.install_develop('zope.pagetemplate', test)
     zc.buildout.testing.install_develop('zope.proxy', test)
     zc.buildout.testing.install_develop('zope.publisher', test)



More information about the Checkins mailing list