forked from BoevaLab/CanSig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (49 loc) · 858 Bytes
/
pyproject.toml
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
[tool.black]
include = '''
/(
src
| scripts
| tests
)/
'''
line-length = 120
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| docs
| \.pytype
)/
'''
[tool.pytest.ini_options]
addopts = "--cov=src/cansig"
testpaths = [
"tests",
]
[tool.pytype]
inputs = ["src", "tests"]
[tool.interrogate]
ignore-init-method = true
ignore-init-module = true
ignore-magic = false
ignore-semiprivate = true
ignore-private = true
ignore-property-decorators = false
ignore-nested-functions = true
ignore-nested-classes = true
exclude = ["setup.py", "docs", "build", "tests"]
ignore-regex = ["^get$", "^mock_.*", ".*BaseClass.*"]
# possible values: 0 (minimal output), 1 (-v), 2 (-vv)
verbose = 2
quiet = false
fail-under = 70
whitelist-regex = []
color = true
omit-covered-files = false