forked from robmadole/django-sunset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
53 lines (44 loc) · 1 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
[buildout]
parts = python scripts test27 test26 test25
develop = .
eggs = django-sunset
[python]
recipe = zc.recipe.egg
interpreter = python
eggs = ${buildout:eggs}
[scripts]
recipe = zc.recipe.egg:scripts
eggs = ${buildout:eggs}
[python27]
executable = /opt/local/bin/python2.7
[python26]
executable = /opt/local/bin/python2.6
[python25]
executable = /opt/local/bin/python2.5
[testdefaults]
eggs = ${buildout:eggs}
coverage
defaults =
--with-coverage
--cover-package=sunset
[test27]
recipe = pbp.recipe.noserunner
python = python27
working-directory = src
eggs = ${testdefaults:eggs}
defaults = ${testdefaults:defaults}
[test26]
recipe = pbp.recipe.noserunner
python = python26
working-directory = src
eggs = ${testdefaults:eggs}
unittest2
defaults = ${testdefaults:defaults}
[test25]
recipe = pbp.recipe.noserunner
python = python25
working-directory = src
# Coverage is not currently installing with python2.5 and setuptools?
eggs = ${buildout:eggs}
unittest2
defaults = ${testdefaults:defaults}