-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuildout.cfg
61 lines (54 loc) · 1.86 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
[buildout]
extends = versions.cfg
versions = versions
parts = demo
test
test-and-cover
flake8
evolution
coveralls
develop = .
eggs = beautifulsoup4
django
django-emoticons
show-picked-versions = true
[demo]
recipe = djangorecipe
project = emoticons.demo
settings = settings
eggs = ${buildout:eggs}
[test]
recipe = pbp.recipe.noserunner
eggs = nose
nose-sfd
nose-progressive
${buildout:eggs}
defaults = --with-progressive
--with-sfd
environment = testenv
[test-and-cover]
recipe = pbp.recipe.noserunner
eggs = nose
nose-sfd
coverage
${buildout:eggs}
defaults = --with-coverage
--cover-package=emoticons
--cover-erase
--with-sfd
environment = testenv
[flake8]
recipe = zc.recipe.egg
eggs = flake8
flake8-import-order
pep8-naming
[evolution]
recipe = zc.recipe.egg
eggs = buildout-versions-checker
scripts = check-buildout-updates=evolve
arguments = '-w --sorting alpha'
[coveralls]
recipe = zc.recipe.egg
eggs = python-coveralls
[testenv]
DJANGO_SETTINGS_MODULE = emoticons.tests.settings