[Checkins] SVN: zope.testrecorder/trunk/ Make it possible to test the Zope2 shim.

Tres Seaver tseaver at palladion.com
Wed Apr 14 23:04:49 EDT 2010


Log message for revision 110920:
  Make it possible to test the Zope2 shim.

Changed:
  U   zope.testrecorder/trunk/buildout.cfg
  U   zope.testrecorder/trunk/setup.py

-=-
Modified: zope.testrecorder/trunk/buildout.cfg
===================================================================
--- zope.testrecorder/trunk/buildout.cfg	2010-04-15 01:34:33 UTC (rev 110919)
+++ zope.testrecorder/trunk/buildout.cfg	2010-04-15 03:04:48 UTC (rev 110920)
@@ -1,7 +1,8 @@
 [buildout]
+index = http://download.zope.org/Zope2/index/2.12.4/
 develop = .
 parts = test
 
 [test]
 recipe = zc.recipe.testrunner
-eggs = zope.testrecorder
+eggs = zope.testrecorder[test]

Modified: zope.testrecorder/trunk/setup.py
===================================================================
--- zope.testrecorder/trunk/setup.py	2010-04-15 01:34:33 UTC (rev 110919)
+++ zope.testrecorder/trunk/setup.py	2010-04-15 03:04:48 UTC (rev 110920)
@@ -30,9 +30,9 @@
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(name='zope.testrecorder',
-      version='0.3.0',
+      version='0.4dev',
       author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
+      author_email='zope-dev at zope.org',
       description='Test recorder for functional tests',
       long_description=(
           read('README.txt')
@@ -53,7 +53,12 @@
       packages=['zope', 'zope.testrecorder'],
       package_dir = {'': 'src'},
       namespace_packages=['zope'],
-      install_requires=['setuptools'],
+      install_requires=[
+        'setuptools',
+      ],
+      extras_require={
+        'test': ['Zope2']
+      },
       include_package_data = True,
       zip_safe = False,
-      )
+)



More information about the checkins mailing list