-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.cfg
39 lines (34 loc) · 964 Bytes
/
setup.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
[compile_catalog]
domain = kotti_contactform
directory = kotti_contactform/locale
[extract_messages]
copyright_holder = Christian Neumann
output_file = kotti_contactform/locale/kotti_contactform.pot
charset = UTF-8
[init_catalog]
domain = kotti_contactform
input_file = kotti_contactform/locale/kotti_contactform.pot
output_dir = kotti_contactform/locale
[update_catalog]
domain = kotti_contactform
input_file = kotti_contactform/locale/kotti_contactform.pot
output_dir = kotti_contactform/locale
previous = true
[tool:pytest]
addopts =
--doctest-modules
--doctest-glob='*.txt'
--capture=no
--cov=kotti_contactform
--cov-report=term-missing
--ignore=kotti_contactform/templates/
--strict
--pep8
kotti_contactform/tests
python_files = test*py
markers =
user: mark test to be run as the given user
pep8
pep8ignore = E501 E122 E123 E125 E128 E711
[aliases]
dev = develop easy_install kotti[testing] kotti[development]