[Checkins] SVN: z3c.recipe.compattest/trunk/ Always include the default exclude list. Fix buildout parameters.

Christian Theune ct at gocept.com
Wed Jan 28 12:43:40 EST 2009


Log message for revision 95355:
  Always include the default exclude list. Fix buildout parameters.
  

Changed:
  U   z3c.recipe.compattest/trunk/buildout.cfg
  U   z3c.recipe.compattest/trunk/src/z3c/recipe/compattest/recipe.py

-=-
Modified: z3c.recipe.compattest/trunk/buildout.cfg
===================================================================
--- z3c.recipe.compattest/trunk/buildout.cfg	2009-01-28 17:36:06 UTC (rev 95354)
+++ z3c.recipe.compattest/trunk/buildout.cfg	2009-01-28 17:43:40 UTC (rev 95355)
@@ -10,9 +10,10 @@
 [compattest]
 recipe = z3c.recipe.compattest
 include = z3c.recipe.compattest
+exclude = zope.container
 
 [compattest-trunk]
 recipe = z3c.recipe.compattest
 include = zope.dottedname
 use_svn = true
-
+exclude = zope.container

Modified: z3c.recipe.compattest/trunk/src/z3c/recipe/compattest/recipe.py
===================================================================
--- z3c.recipe.compattest/trunk/src/z3c/recipe/compattest/recipe.py	2009-01-28 17:36:06 UTC (rev 95354)
+++ z3c.recipe.compattest/trunk/src/z3c/recipe/compattest/recipe.py	2009-01-28 17:43:40 UTC (rev 95355)
@@ -55,7 +55,8 @@
                                         'svn://svn.zope.org/repos/main/')
         if self.svn_url[-1] != '/':
             self.svn_url += '/'
-        self.exclude = string2list(self.options.get('exclude', ''), EXCLUDE)
+        self.exclude = (
+            string2list(self.options.get('exclude', ''), []) + EXCLUDE)
         self.include = string2list(self.options.get('include', ''), INCLUDE)
 
         self.script = self.options.get('script', 'test-%s' % self.name)



More information about the Checkins mailing list