-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
42 lines (35 loc) · 891 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
[tool:pytest]
addopts = -s --strict -vv --cache-clear --maxfail=1 --cov=retrie --cov-report=term --cov-report=html --cov-branch --no-cov-on-fail --ignore=docs
[isort]
profile = black
default_section = THIRDPARTY
known_first_party = tests
[flake8]
ignore = B902,D10,E203,E501,W503
max-line-length = 88
inline-quotes = double
docstring-convention = google
max-cognitive-complexity = 10
[coverage:run]
branch = True
[coverage:report]
exclude_lines =
pragma: no cover
[mypy]
files = src/**/*.py
ignore_missing_imports = True
warn_no_return = False
disallow_untyped_defs = False
allow_redefinition = True
[darglint]
strictness = short
[tool:interrogate]
fail-under = 100
exclude = docs,tests,setup.py,.eggs,.env,.venv,dist,src/mapply/_version.py
verbose = 1
quiet = false
color = true
ignore-module = true
ignore-nested-functions = true
ignore-private = true
ignore-semiprivate = true