-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.cfg
More file actions
32 lines (28 loc) · 746 Bytes
/
setup.cfg
File metadata and controls
32 lines (28 loc) · 746 Bytes
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
[flake8]
max-line-length = 79
ignore = D105, D107, W503
exclude = .git,__pycache__,build,dist,*.egg-info
per-file-ignores =
tests/*: D100, D101, D102, D103, D104, D105, D106, D107, D400
examples/*: D100, D101, D102, D103, D104, D105, D106, D107, D400
deproto/types.py: D101, D102
[isort]
profile = black
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 79
[tool:pytest]
testpaths = tests
python_files = test_*.py
addopts = --verbose --cov=deproto --cov-report=term-missing
[coverage:run]
source = deproto
omit = tests/*,setup.py
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
if __name__ == .__main__.: