-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.cfg
46 lines (41 loc) · 790 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
[flake8]
extend-ignore = E402
max-complexity = 10
max-line-length = 80
per-file-ignores =
# imported but unused
__init__.py: F401
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 80
[tool:pytest]
testpaths = tests
addopts = --cov
[coverage:run]
source =
codingame
tests
omit =
*/conftest.py
# branch = True
[coverage:report]
show_missing = True
exclude_lines =
pragma: no cover
def __repr__
def __str__
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.:
if TYPE_CHECKING:
if typing.TYPE_CHECKING:
if sys.version_info
[doc8]
max-line-length = 80
ignore = D002,D004
ignore-path = docs/_build