-
Notifications
You must be signed in to change notification settings - Fork 0
/
develop.cfg
65 lines (48 loc) · 1.14 KB
/
develop.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
[buildout]
effective-user = kurt
############################################
# Test Packages
# ----------
# Specify a list of packages that you wish to include in your test suite.
# These packages will have their included tests run when you invoke
# bin/test
#
test-packages =
# plonetheme.sunburst
############################################
# Debug Mode
# ----------
debug-mode = off
deprecation-warnings = on
verbose-security = off
############################################
# Less Commonly Changed Options
# -----------------------------
# The remainder of the buildout mainly sets up the development
# environment based on the settings above.
# we're extending buildout.cfg
extends =
buildout.cfg
extensions +=
mr.developer
eggs +=
Products.DocFinderTab
plone.reload
Products.PDBDebugMode
ipdb
parts +=
test
zopeskel
omelette
# mr.developer settings:
always-checkout = force
sources = sources
auto-checkout = *
[omelette]
recipe = collective.recipe.omelette
eggs = ${buildout:eggs}
[test]
recipe = zc.recipe.testrunner
defaults = ['--auto-color', '--auto-progress']
eggs =
${buildout:test-packages}