forked from fedora-infra/bodhi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
70 lines (53 loc) · 1.35 KB
/
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
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
[aliases]
test=pytest
[compile_catalog]
directory = bodhi/server/locale
domain = bodhi
statistics = true
[extract_messages]
add_comments = TRANSLATORS:
output_file = bodhi/server/locale/bodhi.pot
width = 80
[flake8]
show-source = True
max-line-length = 100
exclude = .git,.tox,dist,*egg,build,tools
ignore = E712,W503
# Configure flake8-import-order
application-import-names = bodhi
import-order-style = pep8
[init_catalog]
domain = bodhi
input_file = bodhi/server/locale/bodhi.pot
output_dir = bodhi/server/locale
[mypy]
files = bodhi/client/bindings.py,bodhi/messages,bodhi/server/bugs.py,bodhi/server/buildsys.py,devel/ci/bodhi-ci
follow_imports = silent
[mypy-backoff.*]
ignore_missing_imports = True
[mypy-bugzilla.*]
ignore_missing_imports = True
[mypy-dnf.*]
ignore_missing_imports = True
[mypy-fedora.*]
ignore_missing_imports = True
[mypy-fedora_messaging.*]
ignore_missing_imports = True
[mypy-koji.*]
ignore_missing_imports = True
[mypy-munch.*]
ignore_missing_imports = True
[mypy-pyramid.*]
ignore_missing_imports = True
[mypy-xmlrpc.*]
ignore_missing_imports = True
[pydocstyle]
inherit = true
add-ignore = D413
[tool:pytest]
addopts = --cov-config .coveragerc --cov=bodhi --cov-report term --cov-report xml --cov-report html
[update_catalog]
domain = bodhi
input_file = bodhi/server/locale/bodhi.pot
output_dir = bodhi/server/locale
previous = true