[Checkins] SVN: zc.recipe.testrunner/trunk/ Fixed tests and get ready for release.

Stephan Richter srichter at gmail.com
Wed Jun 9 16:18:18 EDT 2010


Log message for revision 113303:
  Fixed tests and get ready for release.

Changed:
  U   zc.recipe.testrunner/trunk/CHANGES.txt
  U   zc.recipe.testrunner/trunk/buildout.cfg
  U   zc.recipe.testrunner/trunk/setup.py

-=-
Modified: zc.recipe.testrunner/trunk/CHANGES.txt
===================================================================
--- zc.recipe.testrunner/trunk/CHANGES.txt	2010-06-09 19:13:14 UTC (rev 113302)
+++ zc.recipe.testrunner/trunk/CHANGES.txt	2010-06-09 20:18:17 UTC (rev 113303)
@@ -2,17 +2,17 @@
 Change History
 **************
 
-1.3.0 (Unreleased)
+1.3.0 (2010-06-09)
 ==================
 
 - Updated tests to run with the last versions of all modules.
 
 - Removed the usage of the deprecated zope.testing.doctest, therby also
   dropping Python 2.3 support.
-  
+
 - Started using zope.testrunner instead of zope.testing.testrunner.
-  
 
+
 1.2.0 (2009-03-23)
 ==================
 
@@ -68,14 +68,14 @@
 
 - When:
 
-  + the working-directory option was used, 
+  + the working-directory option was used,
   + and the test runner needed to restart itself
   + and the test runner was run with a relative path (e.g. bin/test)
 
   then the testrunner could not restart itself successfully because the
   relative path in sys.argv[0] was no-longer valid.
 
-  Now we convert sys.argv[0] to an absolute path. 
+  Now we convert sys.argv[0] to an absolute path.
 
 1.0.0b4 (2006-10-24)
 ====================

Modified: zc.recipe.testrunner/trunk/buildout.cfg
===================================================================
--- zc.recipe.testrunner/trunk/buildout.cfg	2010-06-09 19:13:14 UTC (rev 113302)
+++ zc.recipe.testrunner/trunk/buildout.cfg	2010-06-09 20:18:17 UTC (rev 113303)
@@ -4,4 +4,4 @@
 
 [test]
 recipe = zc.recipe.testrunner
-eggs = zc.recipe.testrunner
+eggs = zc.recipe.testrunner [tests]

Modified: zc.recipe.testrunner/trunk/setup.py
===================================================================
--- zc.recipe.testrunner/trunk/setup.py	2010-06-09 19:13:14 UTC (rev 113302)
+++ zc.recipe.testrunner/trunk/setup.py	2010-06-09 20:18:17 UTC (rev 113303)
@@ -7,7 +7,7 @@
 name = "zc.recipe.testrunner"
 setup(
     name = name,
-    version = "1.3.0dev",
+    version = "1.3.0",
     author = "Jim Fulton",
     author_email = "jim at zope.com",
     description = "ZC Buildout recipe for creating test runners",
@@ -29,6 +29,9 @@
     include_package_data = True,
     package_dir = {'':'src'},
     namespace_packages = ['zc', 'zc.recipe'],
+    extras_require = {
+        'tests': ['zope.testing'],
+        },
     install_requires = ['zc.buildout >=1.2.0',
                         'zope.testrunner',
                         'setuptools',



More information about the checkins mailing list