-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
44 lines (38 loc) · 912 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
44
[buildout]
develop = .
parts = test coverage coverage-html sphinx
include-site-packages = false
versions = versions
eggs = opsdash
ptah
nose
rednose
[versions]
coverage=3.4
[test]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
entry-points = test=nose:run_exit
initialization = import sys
sys.argc = sys.argc + ['--rednose']
[coverage]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
entry-points = coverage-test=nose:run_exit
initialization = import sys
sys.argc = sys.argv + ['--with-coverage']
[coverage-html]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
entry-points = coverage-html=nose:run_exit
initialization = import sys
sys.argv = sys.argv + ['--with-coverage', '--cover-html', '--cover-html-dir=../coverage']
[sphinx]
recipe = zc.recipe.egg
eggs = Sphinx
opsdash
ptah
[opsdash]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
entry-points = opsdash=ptah: