forked from buildout/buildout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
45 lines (40 loc) · 894 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
[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 = 5.1
[py]
recipe = zc.recipe.egg
eggs = zc.buildout[test]
zc.recipe.egg
coverage
interpreter = py
[test-environment]
PIP_NO_PYTHON_VERSION_WARNING = 1
[test]
recipe = zc.recipe.testrunner
eggs =
zc.buildout[test]
zc.recipe.egg
coverage
defaults = ['-s', 'zc.buildout']
initialization =
import os.path
from zc.buildout.testing import setup_coverage
path_to_coveragerc = os.path.join('${buildout:directory}', '.coveragerc')
setup_coverage(path_to_coveragerc)
environment = test-environment
# Tests that can be run wo a network
[oltest]
recipe = zc.recipe.testrunner
eggs = ${test:eggs}
defaults =
[
'-t',
'!(bootstrap|selectingpython|selecting-python)',
]