-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathbuildout.cfg
More file actions
47 lines (38 loc) · 742 Bytes
/
buildout.cfg
File metadata and controls
47 lines (38 loc) · 742 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
38
39
40
41
42
43
44
45
46
47
[buildout]
socket-timeout = 1
show-picked-versions = true
prefer-final = true
parts =
testdjango
test
omelette
develop = .
versions = versions
[versions]
# Specific pin, this one is overwritten in the other buildout configs (for 1.4
# and 1.6).
Django = 1.8.2
# Pinning versions reported by buildout (for faster running)
collective.recipe.omelette = 0.16
coverage = 3.7.1
mock = 1.0.1
nose = 1.3.7
pbp.recipe.noserunner = 0.2.6
setuptools = 17.0
zc.buildout = 2.3.1
zc.recipe.egg = 2.0.1
[test]
recipe = pbp.recipe.noserunner
eggs =
djangorecipe
djangorecipe[test]
[testdjango]
recipe = djangorecipe
project = koe
eggs =
Django
[omelette]
recipe = collective.recipe.omelette
eggs =
djangorecipe
djangorecipe[test]