[Checkins] SVN: z3c.recipe.compattest/branches/jim-windows-whimper/src/z3c/recipe/compattest/ checkpoint

Jim Fulton jim at zope.com
Mon Aug 17 08:26:34 EDT 2009


Log message for revision 102881:
  checkpoint

Changed:
  U   z3c.recipe.compattest/branches/jim-windows-whimper/src/z3c/recipe/compattest/README.txt
  U   z3c.recipe.compattest/branches/jim-windows-whimper/src/z3c/recipe/compattest/recipe.py

-=-
Modified: z3c.recipe.compattest/branches/jim-windows-whimper/src/z3c/recipe/compattest/README.txt
===================================================================
--- z3c.recipe.compattest/branches/jim-windows-whimper/src/z3c/recipe/compattest/README.txt	2009-08-17 12:26:25 UTC (rev 102880)
+++ z3c.recipe.compattest/branches/jim-windows-whimper/src/z3c/recipe/compattest/README.txt	2009-08-17 12:26:34 UTC (rev 102881)
@@ -17,7 +17,7 @@
   (default: empty)
 - ``exclude``: packages matching any regex in this list will be excluded
   (default: empty)
-- ``script``: the name of the runner script (default: test-<partname>)
+- ``script``: the name of the runner script (defaults to the part name)
 
 - ``svn_url``: SVN repository to search for packages instead of using releases
   (see below)
@@ -44,10 +44,10 @@
 
 >>> ls('bin')
 - buildout
+- compattest
 - compattest-z3c.recipe.compattest
-- test-compattest
 
->>> cat('bin', 'test-compattest')
+>>> cat('bin', 'compattest')
 #!...python...
 ...main(...compattest-z3c.recipe.compattest...
 

Modified: z3c.recipe.compattest/branches/jim-windows-whimper/src/z3c/recipe/compattest/recipe.py
===================================================================
--- z3c.recipe.compattest/branches/jim-windows-whimper/src/z3c/recipe/compattest/recipe.py	2009-08-17 12:26:25 UTC (rev 102880)
+++ z3c.recipe.compattest/branches/jim-windows-whimper/src/z3c/recipe/compattest/recipe.py	2009-08-17 12:26:34 UTC (rev 102881)
@@ -1,7 +1,6 @@
 import infrae.subversion
 import os
 import pkg_resources
-import popen2
 import re
 import zc.buildout.easy_install
 import zc.recipe.egg
@@ -27,7 +26,7 @@
         self.exclude = string2list(self.options.get('exclude', ''), [])
         self.wanted_packages = self._wanted_packages()
 
-        self.script = self.options.get('script', 'test-%s' % self.name)
+        self.script = self.options.get('script', self.name)
 
         self.svn_url = self.options.get('svn_url', None)
         if self.svn_url and self.svn_url[-1] != '/':



More information about the Checkins mailing list