-
Notifications
You must be signed in to change notification settings - Fork 2
/
buildout.cfg
55 lines (49 loc) · 942 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
46
47
48
49
50
51
52
53
54
55
[buildout]
parts = python fabric tests demo
develop = .
versions = django-skylark-versions
download-cache = dlcache
[django-skylark-versions]
pbp.recipe.noserunner = 0.2.6
BeautifulSoup = 3.1.0.1
django = 1.3
py = 1.3.3
[python]
recipe = zc.recipe.egg
interpreter = python
eggs = django-skylark
[fabric]
recipe = zc.recipe.egg:scripts
eggs =
fabric
Sphinx
[test-environment]
DJANGO_SETTINGS_MODULE = skylark.tests.settings
[tests]
recipe = pbp.recipe.noserunner
environment = test-environment
eggs =
django
django-skylark
py
coverage
BeautifulSoup
script = test
working-directory = src
extra-paths =
${buildout:directory}/src/skylark/tests
defaults =
--verbosity=1
--nocapture
--nologcapture
--with-coverage
--cover-package=skylark
[demo]
recipe = djangorecipe
version = 1.3
settings = settings
projectegg = demo
eggs =
django-skylark
extra-paths =
${buildout:directory}/demo