forked from ptahproject/ptah
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
47 lines (43 loc) · 964 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
45
46
47
[buildout]
develop = .
../pyramid/
parts = test coverage coverage-html sphinx
include-site-packages = false
[test]
recipe = zc.recipe.egg
eggs = ptah
nose
rednose
coverage
nose-cov
pyramid_beaker
repoze.sendmail
entry-points = test=nose:run_exit
initialization = import sys
sys.argv = sys.argv + ['--rednose', 'ptah/']
[coverage]
recipe = zc.recipe.egg
eggs = ptah
nose
coverage
nose-cov
pyramid_beaker
repoze.sendmail
entry-points = coverage-test=nose:run_exit
initialization = import sys
sys.argv = sys.argv + ['--with-cov', 'ptah/']
[coverage-html]
recipe = zc.recipe.egg
eggs = ptah
nose
coverage
nose-cov
pyramid_beaker
repoze.sendmail
entry-points = coverage-html=nose:run_exit
initialization = import sys
sys.argv = sys.argv + ['--with-cov', 'ptah/', '--cov-report', 'html']
[sphinx]
recipe = zc.recipe.egg
eggs = Sphinx
ptah