[Checkins] SVN: Zope2.buildout/trunk/alltests.cfg Add a buildout config that allows to run tests for all packages that would

Stefan H. Holek stefan at epy.co.at
Mon Feb 2 14:35:49 EST 2009


Log message for revision 95992:
  Add a buildout config that allows to run tests for all packages that would
  have their tests run in a Zope-trunk SVN checkout.
  

Changed:
  A   Zope2.buildout/trunk/alltests.cfg

-=-
Added: Zope2.buildout/trunk/alltests.cfg
===================================================================
--- Zope2.buildout/trunk/alltests.cfg	                        (rev 0)
+++ Zope2.buildout/trunk/alltests.cfg	2009-02-02 19:35:48 UTC (rev 95992)
@@ -0,0 +1,85 @@
+# Run tests of all packages that would have their tests run in a Zope-trunk
+# SVN checkout.
+
+# Note: Zope2.buildout upgrades various packages from the versions appearing
+# in the checkout. See versions-zope2.cfg for the full list.
+
+[buildout]
+extends = buildout.cfg
+parts += alltests
+
+[alltests]
+recipe = zc.recipe.testrunner<1.1dev
+# The commented packages are present on SVN trunk but not used (downloaded)
+# by Zope2.buildout. If you manage to reduce the dependencies further, feel
+# free to comment out more eggs.
+eggs =
+    ${buildout:eggs}
+    Acquisition
+    DateTime
+    ExtensionClass
+    Persistence
+    RestrictedPython
+    tempstorage
+    zLOG
+    zodbcode
+    zope.annotation
+    zope.cachedescriptors
+    zope.component
+    zope.configuration
+    zope.contentprovider
+    zope.contenttype
+    zope.copypastemove
+    zope.datetime
+    zope.deferredimport
+    zope.deprecation
+#    zope.documenttemplate
+    zope.dottedname
+    zope.dublincore
+    zope.error
+    zope.event
+    zope.exceptions
+    zope.formlib
+    zope.hookable
+    zope.i18n
+    zope.i18nmessageid
+    zope.index
+    zope.interface
+    zope.lifecycleevent
+    zope.location
+    zope.minmax
+    zope.modulealias
+    zope.pagetemplate
+    zope.proxy
+    zope.publisher
+#    zope.rdb
+    zope.schema
+    zope.security
+    zope.securitypolicy
+    zope.sendmail
+    zope.sequencesort
+#    zope.server
+    zope.session
+    zope.size
+    zope.structuredtext
+    zope.tal
+    zope.tales
+    zope.testbrowser
+    zope.thread
+    zope.traversing
+    zope.viewlet
+#    zope.wfmc
+# Fetch undeclared ftests dependencies
+    zope.app.principalannotation
+    zope.app.schema
+    zope.app.securitypolicy
+    zope.app.zcmlfiles
+    zope.app.zptpage
+
+defaults = ['--module', '!^(zope[.]app)[.]']
+environment = test-environment
+
+[versions]
+zope.app.exception = 3.4.2
+zope.app.generations = 3.4.2
+zope.app.zcmlfiles = 3.5.2



More information about the Checkins mailing list