forked from parashardhapola/scarf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (43 loc) · 767 Bytes
/
pyproject.toml
File metadata and controls
45 lines (43 loc) · 767 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
33
34
35
36
37
38
39
40
41
42
43
44
45
[build.system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -v"
testpaths = [
"scarf/tests",
]
norecursedirs = [
"scarf/tests"
]
[tool.interrogate]
ignore-init-method = true
ignore-init-module = false
ignore-magic = false
ignore-semiprivate = true
ignore-private = true
ignore-property-decorators = false
ignore-module = false
ignore-nested-functions = false
ignore-nested-classes = true
ignore-setters = false
fail-under = 50
exclude = [
"setup.py",
"docs",
"scarf/tests"
]
ignore-regex = [
"^get$",
"^mock_.*",
".*BaseClass.*"
]
verbose = 2
quiet = false
whitelist-regex = []
color = true
generate-badge = '.'
badge-format = "svg"