[Checkins] SVN: zc.buildout/trunk/zc.recipe.testrunner/ Updated release info.

Jim Fulton jim at zope.com
Sun Oct 1 11:15:16 EDT 2006


Log message for revision 70456:
  Updated release info.
  

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

-=-
Added: zc.buildout/trunk/zc.recipe.testrunner/CHANGES.txt
===================================================================
--- zc.buildout/trunk/zc.recipe.testrunner/CHANGES.txt	2006-10-01 15:15:13 UTC (rev 70455)
+++ zc.buildout/trunk/zc.recipe.testrunner/CHANGES.txt	2006-10-01 15:15:15 UTC (rev 70456)
@@ -0,0 +1,33 @@
+
+Change History
+**************
+
+1.0.0b2
+=======
+
+Added a defaults option to specify testrunner default options.
+
+1.0.0b1
+=======
+
+Updated to work with zc.buildout 1.0.0b5.
+
+1.0.0a3
+=======
+
+Added a defaults option that lets you specify test-runner default
+options.
+
+
+1.0.0a2
+=======
+
+Now provide a extra-paths option for including extra paths in test
+scripts. This is useful when eggs depend on Python packages not
+packaged as eggs.
+
+
+1.0.0a1
+=======
+
+Initial public version


Property changes on: zc.buildout/trunk/zc.recipe.testrunner/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zc.buildout/trunk/zc.recipe.testrunner/README.txt
===================================================================
--- zc.buildout/trunk/zc.recipe.testrunner/README.txt	2006-10-01 15:15:13 UTC (rev 70455)
+++ zc.buildout/trunk/zc.recipe.testrunner/README.txt	2006-10-01 15:15:15 UTC (rev 70456)
@@ -1,45 +1,9 @@
+******************
 Test-Runner Recipe
-==================
+******************
 
 .. contents::
 
 This recipe generates zope.testing test-runenr scripts for testing a
 collection of eggs.  The eggs must already be installed (using the
 zc.recipe.egg recipe)
-
-The test-runner recipe has 2 options:
-
-- The eggs option takes the names of the eggs to be
-  tested.  These are not installed by the recipe. They must be
-  installed by some other recipe (or using the buildout develop
-  option).  The distributions are in the form os setuptools
-  requirements.  Multiple distributions must be listed on separate
-  lines. This option is required.
-
-- The script option gives the name of the script to generate, in the
-  buildout bin directory.  Of the option isn't used, the part name
-  will be used.
-
-To do
------
-
-- Support specifying testrunner defaults (e.g. verbosity, test file 
-  patterns, etc.)
-
-
-
-Change History
-==============
-
-1.0.0a2
--------
-
-Now provide a extra-paths option for including extra paths in test
-scripts. This is useful when eggs depend on Python packages not
-packaged as eggs.
-
-
-1.0.0a1
--------
-
-Initial public version

Modified: zc.buildout/trunk/zc.recipe.testrunner/setup.py
===================================================================
--- zc.buildout/trunk/zc.recipe.testrunner/setup.py	2006-10-01 15:15:13 UTC (rev 70455)
+++ zc.buildout/trunk/zc.recipe.testrunner/setup.py	2006-10-01 15:15:15 UTC (rev 70456)
@@ -1,3 +1,4 @@
+import os
 from setuptools import setup, find_packages
 
 name = "zc.recipe.testrunner"
@@ -3,9 +4,19 @@
 setup(
     name = name,
-    version = "1.0.0b1",
+    version = "1.0.0b2",
     author = "Jim Fulton",
     author_email = "jim at zope.com",
     description = "ZC Buildout recipe for creating test runners",
-    long_description=open('README.txt').read(),
+    long_description = (
+        open('README.txt').read()
+         + '\n' +
+        open('CHANGES.txt').read()
+        + '\n' +
+        'Detailed Documentation\n'
+        '**********************\n'
+        + '\n' +
+        open(os.path.join('src', 'zc', 'recipe', 'testrunner', 'README.txt')
+             ).read()
+        ),
     license = "ZPL 2.1",
     keywords = "development build testing",
@@ -16,7 +27,7 @@
     include_package_data = True,
     package_dir = {'':'src'},
     namespace_packages = ['zc', 'zc.recipe'],
-    install_requires = ['zc.buildout  >=1.0.0b3', 'zope.testing', 'setuptools',
+    install_requires = ['zc.buildout  >=1.0.0b7', 'zope.testing', 'setuptools',
                         'zc.recipe.egg  >=1.0.0a3',
                         ],
     test_suite = name+'.tests.test_suite',



More information about the Checkins mailing list