forked from Fantomas42/django-blog-zinnia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
82 lines (74 loc) · 2.63 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
[buildout]
extends = versions.cfg
parts = test
demo
docs
cover
flake8
evolution
develop = .
eggs = ${eggs:django}
${eggs:zinnia}
${eggs:markups}
${eggs:third-party}
show-picked-versions = true
[eggs]
django = django
pillow
pytz
zinnia = beautifulsoup4
django-blog-zinnia
django-contrib-comments
django-mptt
django-tagging
django-xmlrpc
pyparsing
markups = docutils
markdown
textile
third-party = feedparser
gdata
[demo]
recipe = djangorecipe
projectegg = 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
[evolution]
recipe = zc.recipe.egg
eggs = buildout-versions-checker
[testenv]
NOSE_TESTMATCH = ^test_
DJANGO_SETTINGS_MODULE = zinnia.tests.implementations.sqlite