-
Notifications
You must be signed in to change notification settings - Fork 730
/
buildout.cfg
85 lines (77 loc) · 2.79 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
[buildout]
extends = versions.cfg
parts = test
demo
docs
cover
flake8
evolution
develop = .
eggs = ${eggs:django}
${eggs:zinnia}
${eggs:markups}
show-picked-versions = true
[eggs]
django = django
pillow
pytz
zinnia = beautifulsoup4
django-blog-zinnia
django-contrib-comments
django-mptt
django-tagging
django-xmlrpc
mots-vides
pyparsing
regex
markups = docutils
markdown
textile
[demo]
recipe = djangorecipe
project = demo
settings = settings
eggs = ${buildout:eggs}
[test]
recipe = pbp.recipe.noserunner
eggs = nose
nose-sfd
nose-progressive
${eggs:django}
${eggs:zinnia}
${eggs:markups}
defaults = --with-sfd
--with-progressive
--nologcapture
environment = testenv
[cover]
recipe = pbp.recipe.noserunner
eggs = coverage
${test: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}
[flake8]
recipe = zc.recipe.egg
eggs = flake8
flake8-import-order
pep8-naming
[evolution]
recipe = zc.recipe.egg
eggs = buildout-versions-checker
arguments = '-w --sorting alpha'
scripts = check-buildout-updates=${:_buildout_section_name_}
[testenv]
NOSE_TESTMATCH = ^test_
DJANGO_SETTINGS_MODULE = zinnia.tests.implementations.sqlite