forked from buildout/buildout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildout.cfg
39 lines (35 loc) · 822 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
[buildout]
develop = zc.recipe.egg_ .
parts = test oltest py
versions = versions
[versions]
zope.interface = 4.1.3
zope.exceptions = 4.0.8
zc.recipe.testrunner = 2.0.0
zope.testing = 4.5.0
coverage = 4.4.1
[py]
recipe = zc.recipe.egg
eggs = zc.buildout[test]
zc.recipe.egg
coverage
interpreter = py
[test]
recipe = zc.recipe.testrunner
eggs =
zc.buildout[test]
zc.recipe.egg
coverage
initialization =
import os
if 'COVERAGE_PROCESS_START' not in os.environ: os.environ['COVERAGE_PROCESS_START'] = os.path.abspath('../../.coveragerc')
if os.getenv('COVERAGE_PROCESS_START'): import coverage; coverage.process_startup()
# Tests that can be run wo a network
[oltest]
recipe = zc.recipe.testrunner
eggs = ${test:eggs}
defaults =
[
'-t',
'!(bootstrap|selectingpython|selecting-python)',
]