-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathbuildout.cfg
99 lines (84 loc) · 1.59 KB
/
buildout.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[buildout]
extensions = mr.developer
allow-picked-versions = false
develop = .
extends =
sources.cfg
versions.cfg
installed = .installed.cfg
parts =
test
zopescripts
alltests
allpy
sphinx
checkversions
requirements
sources-dir = develop
root-directory = ${buildout:directory}
auto-checkout =
[testenv]
PYTHONHASHSEED = random
[test]
recipe = zc.recipe.testrunner
script = test
environment = testenv
initialization =
import sys
import warnings
warnings.simplefilter('default')
eggs = Zope
[zopescripts]
recipe = zc.recipe.egg
interpreter = zopepy
eggs =
Zope[wsgi]
[alltests]
recipe = zc.recipe.testrunner
script = alltests
environment = testenv
eggs =
AccessControl
Acquisition
DateTime
DocumentTemplate
ExtensionClass
MultiMapping
Persistence
zExceptions
Zope
# Test optional dependencies.
five.localsitemanager
Missing
Products.BTreeFolder2
Products.ZCatalog
Record
[allpy]
recipe = zc.recipe.egg
eggs = ${alltests:eggs}
interpreter = allpy
[make-docs]
recipe = collective.recipe.template
input = inline:
#!/bin/sh
cd ${buildout:directory}/docs
make html
output = ${buildout:directory}/bin/make-docs
mode = 755
[sphinx]
=> make-docs
recipe = zc.recipe.egg
eggs =
Zope[docs]
Sphinx
scripts =
sphinx-build
[checkversions]
recipe = zc.recipe.egg
eggs = z3c.checkversions [buildout]
[requirements]
recipe = plone.recipe.command
command =
${zopescripts:bin-directory}/${zopescripts:interpreter} ${buildout:root-directory}/util.py
update-command = ${:command}
stop-on-error = yes