-
Notifications
You must be signed in to change notification settings - Fork 7
/
buildout.cfg
64 lines (48 loc) · 1.03 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
[buildout]
index = https://pypi.python.org/simple/
show-picked-versions = true
extensions =
mr.developer
parts =
instance
test
code-analysis
omelette
robot
develop =
.
package-name = plone.importexport
package-extras = [test]
[code-analysis]
recipe = plone.recipe.codeanalysis[recommended]
directory = ${buildout:directory}/src/plone/importexport
clean-lines = True
multiprocessing = True
pre-commit-hook = True
return-status-codes = False
flake8 = True
flake8-ignore = P001,T000
[instance]
recipe = plone.recipe.zope2instance
user = admin:admin
http-address = 8080
eggs =
Plone
Pillow
plone.restapi
plone.importexport[test]
Products.PDBDebugMode
[omelette]
recipe = collective.recipe.omelette
eggs = ${instance:eggs}
[test]
recipe = zc.recipe.testrunner
eggs = ${instance:eggs}
defaults = ['-s', 'plone.importexport', '--auto-color', '--auto-progress']
[robot]
recipe = zc.recipe.egg
eggs =
${test:eggs}
plone.app.robotframework[debug,ride,reload]
[versions]
zc.recipe.egg = 2.0.1