-
Notifications
You must be signed in to change notification settings - Fork 209
/
setup.cfg
61 lines (53 loc) · 1.08 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
[flake8]
format = pylint
exclude =
CVS,
.svc,
.bzr,
.hg,
.git,
__pycache__,
venv,
build,
databuilder/sql_parser/usage/presto/antlr_generated
max-complexity = 10
max-line-length = 120
ignore = NONE
[pep8]
max-line-length = 120
[tool:pytest]
addopts =
-rs
--cov=databuilder
--cov-fail-under=70
--cov-report=term-missing:skip-covered
--cov-report=xml
--cov-report=html
-vvv
[coverage:run]
branch = True
omit = */antlr_generated/*
[coverage:xml]
output = build/coverage.xml
[coverage:html]
directory = build/coverage_html
[mypy]
python_version = 3.6
disallow_untyped_defs = True
ignore_missing_imports = True
[isort]
profile = django
line_length = 120
force_grid_wrap = 3
combine_star = true
combine_as_imports = true
remove_redundant_aliases = true
color_output = true
skip_glob = []
[semantic_release]
version_variable = "./setup.py:__version__"
upload_to_pypi = true
upload_to_release = true
commit_subject = New release for {version}
commit_message = Signed-off-by: github-actions <[email protected]>
commit_author = github-actions <[email protected]>