forked from tkhyn/dirsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
70 lines (56 loc) · 1.13 KB
/
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
### BUILDOUT CONFIG FILE ###
[buildout]
# DIRECTORIES
bin-directory = bin
parts-directory = bin/parts
develop-eggs-directory = bin/dev-eggs
# PARTS
parts =
python
tests
coverage
eggs =
six
# specify a version for ANY egg used :
# - to ensure repeatability
# - to make the buildout script run faster
# (does not need to check for newer versions)
# check the output for picked versions
show-picked-versions = true
# PARTS DEFINITIONS
# the tests runner
[tests]
recipe = pbp.recipe.noserunner
eggs =
${buildout:eggs}
mock
working-directory = tests
defaults =
--all-modules
# coverage info
[coverage]
<= tests
eggs =
${tests:eggs}
coverage
defaults =
--with-coverage
# the buildout environment python interpreter
[python]
recipe = zc.recipe.egg:script
eggs = ${tests:eggs}
scripts = python
interpreter = python
extra-paths = ${buildout:directory}
[versions]
python = 3.6
zc.buildout = 2.13.3
# RECIPES
zc.recipe.egg = 2.0.7
pbp.recipe.noserunner = 0.2.6
# requires
nose = 1.3.7
coverage = 5.2.1
mock = 4.0.2
pbr = 3.1.1
six = 1.15.0