forked from zodb/relstorage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuildout.cfg
More file actions
38 lines (31 loc) · 722 Bytes
/
buildout.cfg
File metadata and controls
38 lines (31 loc) · 722 Bytes
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
[buildout]
develop = .
base-parts = test py python omelette coverage-test coverage-report
parts = ${buildout:base-parts}
eggs = relstorage [${buildout:db}]
db =
[test]
recipe = zc.recipe.testrunner
eggs = relstorage [test, ${buildout:db}]
[py]
recipe = zc.recipe.egg
eggs = ${test:eggs}
[python]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
interpreter = py
[omelette]
recipe = collective.recipe.omelette
eggs = ${buildout:eggs}
ignores = setuptools
[coverage-test]
recipe = zc.recipe.testrunner
eggs = ${buildout:eggs}
defaults = ['--coverage', 'coverage']
[coverage-report]
recipe = zc.recipe.egg
eggs =
${buildout:eggs}
z3c.coverage
scripts = coveragereport
arguments = ('coverage', 'coverage/report')