-
Notifications
You must be signed in to change notification settings - Fork 76
/
buildout.cfg
43 lines (32 loc) · 850 Bytes
/
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
[buildout]
index = https://pypi.python.org/simple
extends = https://dist.plone.org/release/5.1.6/versions.cfg
extensions = mr.developer
parts =
instance
test
develop = .
[buildout:os.environ.get('TRAVIS', 'false') != 'true']
# omelette for development but not on Travis
parts += omelette
[instance]
recipe = plone.recipe.zope2instance
user = admin:admin
http-address = 8080
eggs =
Plone
Products.PloneFormGen [test]
Products.contentmigration
# With xlwt (eXceL WriTer) you can test the excel export of the Save Data Adapter:
# xlwt
[omelette]
recipe = collective.recipe.omelette
eggs = ${instance:eggs}
[test]
recipe = zc.recipe.testrunner
eggs = ${instance:eggs}
defaults = ['-s', 'Products.PloneFormGen', '--auto-color', '--auto-progress']
[versions]
setuptools = 41.0.1
zc.buildout = 2.13.2
zc.recipe.egg = 2.0.7