source: products/quintagroup.transmogrifier/branches/plone-3.1/collective.transmogrifier/buildout.cfg

Last change on this file was 466, checked in by myroslav, 18 years ago

Tagging intial release

File size: 1.0 KB
Line 
1[config]
2package = collective.transmogrifier
3cmfcore-version = >=2.1.2,<2.2dev
4
5[buildout]
6
7parts =
8    test
9
10find-links =
11    http://dist.plone.org
12    http://download.zope.org/ppix/
13    http://download.zope.org/distribution/
14    http://effbot.org/downloads
15
16eggs = 
17develop = .
18
19[zope2]
20recipe = plone.recipe.zope2install
21url = http://www.zope.org/Products/Zope/2.10.6/Zope-2.10.6-final.tgz
22additional-fake-eggs = ZODB3
23
24[instance]
25recipe = plone.recipe.zope2instance
26zope2-location = ${zope2:location}
27user = admin:admin
28
29eggs =
30    zope.testing == 3.5
31    Products.CMFCore${config:cmfcore-version}
32    ${buildout:eggs}
33    ${config:package}
34
35zcml =
36    ${config:package}
37
38[test]
39recipe = zc.recipe.egg
40eggs =
41    ${instance:eggs}
42    plone.recipe.zope2instance
43   
44extra-paths =
45    ${zope2:location}/lib/python
46entry-points =
47    test=plone.recipe.zope2instance.ctl:main
48       
49arguments = 
50    ["-C", "${instance:location}/etc/zope.conf", "test", "-m",
51     "${config:package}", "--keepbytecode", "--exit-with-status"] +
52    sys.argv[1:]
Note: See TracBrowser for help on using the repository browser.