-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
53 lines (41 loc) · 979 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[bumpversion]
current_version = 0.1.1
commit = True
tag = True
[bumpversion:file:setup.py]
[bumpversion:file:kedro_diff/__init__.py]
[bumpversion:file:kedro_diff/cli.py]
[bumpversion:file:kedro_diff/commit_parser.py]
[pydocstyle]
inherit = false
match = (?!punch_).*\.py
[tool:pytest]
addopts = -ra -q --cov=kedro_diff --cov-fail-under=100 --cov-report=term-missing
testpaths =
tests
[coverage:report]
omit =
kedro_diff/cli.py
kedro_diff/get_pipelines.py
kedro_diff/sample_data.py
kedro_diff/logger.py
exclude_lines =
if __name__ == .__main__.:
if TYPE_CHECKING:
[mypy]
python_version = 3.8
warn_return_any = True
warn_unused_configs = True
disallow_untyped_defs = True
disallow_untyped_calls = True
allow_untyped_globals = False
[mypy-tests.*]
ignore_errors = True
[mypy-setuptools]
ignore_missing_imports = True
[mypy-rich.*]
ignore_missing_imports = True
[flake8]
ignore = E203, E266, E501, W503, E231, F541
max-line-length = 88
select = B,C,E,F,W,T4,B9