[Checkins] SVN: zc.extjs/branches/dev/buildout.cfg Added a selenium test and demo instance.

Jim Fulton jim at zope.com
Mon Mar 31 11:10:58 EDT 2008


Log message for revision 85034:
  Added a selenium test and demo instance.
  

Changed:
  U   zc.extjs/branches/dev/buildout.cfg

-=-
Modified: zc.extjs/branches/dev/buildout.cfg
===================================================================
--- zc.extjs/branches/dev/buildout.cfg	2008-03-31 13:49:27 UTC (rev 85033)
+++ zc.extjs/branches/dev/buildout.cfg	2008-03-31 15:10:58 UTC (rev 85034)
@@ -1,12 +1,43 @@
 [buildout]
 develop = .
-parts = test py
+parts = test py demo selenium
 
 [test]
 recipe = zc.recipe.testrunner
-eggs = 
+eggs = zc.extjs [test]
 
 [py]
 recipe = zc.recipe.egg
 eggs = ${test:eggs}
 interpreter = py
+
+[application]
+recipe = zc.zope3recipes:application
+servers = zserver
+eggs =
+     ${test:eggs}
+     zope.app.server
+     zc.selenium
+site.zcml = <include package="zc.extjs" file="selenium.zcml" />
+
+[demo]
+recipe = zc.zope3recipes:instance
+application = application
+zope.conf =
+  devmode on 
+  <zodb>
+    <demostorage>
+    </demostorage>
+  </zodb>
+  <server http0>
+    address 39857
+    type WSGI-HTTP
+  </server>
+
+[selenium]
+recipe = zc.recipe.egg:scripts
+eggs = ${application:eggs}
+script = selenium
+entry-points = selenium=zc.selenium.selenium:main
+initialization =
+  sys.argv.insert(1, '${demo:run-directory}/zope.conf')



More information about the Checkins mailing list