forked from fschulze/mr.developer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildout.cfg
55 lines (48 loc) · 1010 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
48
49
50
51
52
53
54
55
[buildout]
parts =
test
coverage-test
coverage-report
develop =
.
mr.developer.addon
versions = versions
[test]
recipe = zc.recipe.egg
eggs =
pytest
pytest-pep8
mr.developer [test]
[coverage]
recipe = zc.recipe.egg
eggs = coverage
[coverage-conf]
recipe = collective.recipe.template
input = inline:
[run]
branch = False
source = mr.developer
[html]
directory = ${buildout:directory}/coverage
output = ${buildout:directory}/etc/coverage.ini
[coverage-test]
recipe = zc.recipe.egg
eggs = ${coverage:eggs}
scripts =
coverage=coverage-test
initialization =
sys.argv[1:1] = ['run', '--rcfile=${coverage-conf:output}', 'bin/py.test']
[coverage-report]
recipe = zc.recipe.egg
eggs = ${coverage:eggs}
scripts = coverage=coverage-report
initialization =
sys.argv[1:1] = ['xml', '--rcfile=${coverage-conf:output}']
[versions]
execnet = 1.1
pep8 = 1.2
py = 1.4.12
pytest = 2.3.4
pytest-pep8 = 0.8
pytest-cache = 0.9
collective.recipe.template = 1.10