~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to buildout.cfg

  • Committer: Gary Poster
  • Date: 2009-05-01 00:25:52 UTC
  • mto: (8329.1.1 buildout2)
  • mto: This revision was merged to the branch mainline in revision 8489.
  • Revision ID: gary.poster@canonical.com-20090501002552-3hdbl9k771juuy1z
test works, nominally; and bin/py is a bit more functional.  problems with import warnings are more serious because they cause tests to fail.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
[buildout]
2
2
parts =
3
3
    scripts
4
 
    test
 
4
    filetemplates
5
5
    tags
6
6
    iharness
 
7
    i18n
7
8
unzip = true
8
9
 
9
10
develop = .
11
12
[configuration]
12
13
instance_name = development
13
14
 
14
 
[test]
15
 
recipe = zc.recipe.testrunner
 
15
[filetemplates]
 
16
recipe = z3c.recipe.filetemplate
16
17
eggs = lp
17
 
defaults = '--tests-pattern ^tests --exit-with-status'.split()
 
18
# TODO: make mailman built in a more normal way
 
19
extra-paths = ${buildout:directory}/lib/mailman
 
20
source-directory = buildout-templates
18
21
 
19
22
[scripts]
20
23
recipe = zc.recipe.egg
21
24
eggs = lp
22
 
interpreter = py
23
25
# TODO: make mailman built in a more normal way
24
26
extra-paths = ${buildout:directory}/lib/mailman
25
27
# note that any indentation is lost in initialization blocks
27
29
initialization = import os
28
30
                 os.environ['STORM_CEXTENSIONS'] = '1'
29
31
                 os.environ['LPCONFIG'] = '${configuration:instance_name}'
 
32
entry-points = stxdocs=zope.configuration.stxdocs:main
30
33
 
31
34
[iharness]
32
35
recipe = zc.recipe.egg
42
45
[tags]
43
46
recipe = z3c.recipe.tag:tags
44
47
eggs = lp
 
48
 
 
49
[i18n]
 
50
recipe = z3c.recipe.i18n:i18n
 
51
eggs = lp
 
52
packages = canonical.launchpad
 
53
domain = launchpad
 
54
output = locales
 
55
zcml = <include file="../../site.zcml" />