forked from Fantomas42/django-blog-zinnia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
88 lines (76 loc) · 1.46 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[buildout]
extends = versions.cfg
parts = test
demo
docs
tox
cover
pep8
pyflakes
develop = .
eggs = django
django-blog-zinnia
django-tagging
django-bitly
django-xmlrpc
django-mptt
pyparsing
tweepy
gdata
pytz
feedparser
beautifulsoup4
Pillow
South
docutils
Markdown
textile
akismet
PyMollom
pdbpp
nose
coverage
nose-sfd
nose-progressive
show-picked-versions = true
[demo]
recipe = djangorecipe
projectegg = demo
settings = settings
eggs = ${buildout:eggs}
[test]
recipe = pbp.recipe.noserunner
eggs = ${buildout:eggs}
defaults = --with-progressive
--with-sfd
environment = testenv
[cover]
recipe = pbp.recipe.noserunner
eggs = ${buildout:eggs}
defaults = --with-sfd
--with-xunit
--xunit-file=docs/coverage/nosetests.xml
--with-coverage
--cover-package=zinnia
--cover-erase
--cover-html
--cover-html-dir=docs/coverage
environment = testenv
[docs]
recipe = collective.recipe.sphinxbuilder
source = ${buildout:directory}/docs
build = ${buildout:directory}/docs/build
eggs = ${buildout:eggs}
[pyflakes]
recipe = zc.recipe.egg
eggs = pyflakes
[tox]
recipe = zc.recipe.egg
scripts = tox
eggs = tox
entry-points = tox=tox:cmdline
[pep8]
recipe = zc.recipe.egg
eggs = pep8
[testenv]
DJANGO_SETTINGS_MODULE = zinnia.testsettings