forked from databrickslabs/discoverx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 720 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 720 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
[tool.pytest.ini_options]
addopts = "-s -p no:warnings"
log_cli = 1
log_cli_level = "INFO"
log_cli_format = "[pytest][%(asctime)s][%(levelname)s][%(module)s][%(funcName)s] %(message)s"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
log_level = "INFO"
[tool.black]
line-length = 120
[tool.coverage.run]
branch = true
source = [
"discoverx"
]
[tool.coverage.report]
exclude_lines = [
"if self.debug:",
"pragma: no cover",
"raise NotImplementedError",
"if __name__ == .__main__.:"
]
ignore_errors = true
omit = [
"tests/*",
"setup.py",
"dbx_gen_prospector/common.py",
# this file is autogenerated by dbx
"discoverx/common.py"
]
[tool.coverage.html]
directory = "coverage_html_report"