-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 823 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
[tool.black]
line-length=100
target-version=["py38"]
[tool.isort]
profile = "black"
atomic=true
line_length = 100
lines_after_imports=2
lines_between_types=1
known_third_party=[
"pytest",
"click",
]
known_first_party=["historical-system-profiles-backend"]
[tool.coverage.run]
branch = false
source = ["historical-system-profiles-backend"]
omit = ["historical-system-profiles-backend/tests/*",]
[tool.coverage.paths]
source = ["historical-system-profiles-backend/"]
[tool.coverage.report]
fail_under = 30
skip_covered = true
show_missing = true
[tool.pytest.ini_options]
minversion = "6.2.1"
addopts = "-s --tb=native --cov=."
testpaths = "./tests"
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
'ignore:function ham\(\) is deprecated:DeprecationWarning'
]