[Checkins] SVN: z3c.recipe.eggbasket/trunk/ - Added missing `zope.testing` test dependency as a test extra.

Michael Howitz mh at gocept.com
Mon Aug 30 04:15:54 EDT 2010


Log message for revision 116016:
  - Added missing `zope.testing` test dependency as a test extra.
  
  

Changed:
  U   z3c.recipe.eggbasket/trunk/CHANGES.txt
  U   z3c.recipe.eggbasket/trunk/buildout.cfg
  U   z3c.recipe.eggbasket/trunk/setup.py

-=-
Modified: z3c.recipe.eggbasket/trunk/CHANGES.txt
===================================================================
--- z3c.recipe.eggbasket/trunk/CHANGES.txt	2010-08-30 07:07:31 UTC (rev 116015)
+++ z3c.recipe.eggbasket/trunk/CHANGES.txt	2010-08-30 08:15:54 UTC (rev 116016)
@@ -6,7 +6,7 @@
 0.4.4 (unreleased)
 ==================
 
-- Nothing changed yet.
+- Added missing `zope.testing` test dependency as a test extra.
 
 
 0.4.3 (2009-09-15)

Modified: z3c.recipe.eggbasket/trunk/buildout.cfg
===================================================================
--- z3c.recipe.eggbasket/trunk/buildout.cfg	2010-08-30 07:07:31 UTC (rev 116015)
+++ z3c.recipe.eggbasket/trunk/buildout.cfg	2010-08-30 08:15:54 UTC (rev 116016)
@@ -6,7 +6,7 @@
 # fine.  Somehow zc.recipe.egg cannot be found.
 [test]
 recipe = zc.recipe.testrunner
-eggs = z3c.recipe.eggbasket
+eggs = z3c.recipe.eggbasket [test]
 
 
 [bundlemaker]

Modified: z3c.recipe.eggbasket/trunk/setup.py
===================================================================
--- z3c.recipe.eggbasket/trunk/setup.py	2010-08-30 07:07:31 UTC (rev 116015)
+++ z3c.recipe.eggbasket/trunk/setup.py	2010-08-30 08:15:54 UTC (rev 116016)
@@ -13,7 +13,7 @@
 long_description = (
     'Change history\n'
     '**************\n'
-    + '\n' + 
+    + '\n' +
     read('CHANGES.txt')
     + '\n' +
     'Detailed Documentation\n'
@@ -21,7 +21,7 @@
     + '\n' +
     read('z3c', 'recipe', 'eggbasket', 'README.txt')
     + '\n' +
-    'Contributors\n' 
+    'Contributors\n'
     '************\n'
     + '\n' +
     read('CONTRIBUTORS.txt')
@@ -31,6 +31,12 @@
     )
 
 
+tests_require = [
+    'zope.testing',
+    'zc.recipe.egg'
+    ]
+
+
 setup(name='z3c.recipe.eggbasket',
       version=version,
       description="Install eggs from a tarball and create that egg.",
@@ -56,7 +62,10 @@
                         'zc.buildout',
                         'zc.recipe.egg',
                         ],
-      tests_require=['zope.testing', 'zc.recipe.egg'],
+      extras_require = dict(
+          test=tests_require
+          ),
+      tests_require=tests_require,
       test_suite='z3c.recipe.eggbasket.tests.test_docs.test_suite',
       entry_points={
         "zc.buildout":



More information about the checkins mailing list