-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.cfg
More file actions
75 lines (58 loc) · 1.36 KB
/
setup.cfg
File metadata and controls
75 lines (58 loc) · 1.36 KB
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
71
72
73
74
75
# All plugins and other utils are defined here.
[flake8]
# Base flake8 configuration:
# https://flake8.pycqa.org/en/latest/user/configuration.html
format = wemake
show-source = true
statistics = false
doctests = true
# Plugins:
max-complexity = 6
max-line-length = 80
select = WPS, E99
# Excluding some directories:
exclude =
.git
__pycache__
.venv
.eggs
*.egg
per-file-ignores =
# There are multiple `assert`s, and subprocesses in tests:
tests/*.py: WPS226
[tool:pytest]
# py.test options:
norecursedirs = *.egg .eggs dist build docs .tox .git __pycache__
# Strict `@xfail` by default:
xfail_strict = true
addopts =
--strict-markers
--strict-config
--doctest-modules
--cov=dump_env
--cov-branch
--cov-report=term:skip-covered
--cov-report=html
--cov-report=xml
--cov-fail-under=100
[coverage:run]
# Coverage configuration:
# https://coverage.readthedocs.io/en/latest/config.html
# Required since 7.10:
patch = subprocess
[mypy]
# mypy configurations: https://mypy.readthedocs.io/en/latest/config_file.html
enable_error_code =
truthy-bool,
truthy-iterable,
redundant-expr,
unused-awaitable,
# ignore-without-code,
possibly-undefined,
redundant-self,
ignore_missing_imports = true
strict = true
warn_unreachable = true
[codespell]
# codespell configuration: https://pypi.org/project/codespell
skip = __pycache__,_build,.mypy_cache