forked from Benzhaomin/detectoid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev.cfg
72 lines (63 loc) · 1.33 KB
/
dev.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
[buildout]
extends = buildout/common.cfg
show-picked-versions = true
update-versions-file = buildout/versions.cfg
newest = false
parts +=
pep8
pylint
release
doc
test
[system]
host = 127.0.0.1
port = 8081
sqlalchemy.database_uri = sqlite:///detectoid.db
twitch.client_id = oxo7aru554t5u01d7gomwzjrqh5jmw9
[logging]
logger_root_level = DEBUG
logger_detectoid_level = DEBUG
logger_requests.packages.urllib3.connectionpool_level = ERROR
[pyramid]
reload_templates = true
includes = pyramid_debugtoolbar
[pep8]
recipe = zc.recipe.egg
eggs =
flake8
autopep8
[pylint]
recipe = zc.recipe.egg
eggs =
${buildout:package} [test]
pylint
scripts =
pylint
entry-points =
pylint=pylint.lint:Run
arguments = [
'--rcfile=${buildout:directory}/.pylintrc',
] + sys.argv[1:]
[release]
recipe = zc.recipe.egg
eggs = zest.releaser[recommended]
[doc]
recipe = collective.recipe.sphinxbuilder
interpreter = ${buildout:directory}/bin/python
[test]
recipe = pbp.recipe.noserunner
eggs =
${buildout:package} [test]
coverage
defaults =
--with-doctest
--doctest-extension=rst
--doctest-options=+ELLIPSIS,+NORMALIZE_WHITESPACE
--with-coverage
--cover-package=${buildout:package}
--nocapture
--nologcapture
--cover-erase
--cover-min-percentage=70
--with-xunit
--cover-xml