forked from ohcnetwork/care
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (54 loc) · 923 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
53
54
55
56
57
[tool.coverage.run]
branch = true
source = ["care"]
parallel = true
concurrency = ["multiprocessing"]
relative_files = true
omit = [
"*/tests/*",
"*/migrations*/*",
"*/asgi.py",
"*/wsgi.py",
"manage.py",
".venv/*"
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError"
]
ignore_errors = true
[tool.isort]
profile = "black"
known_third_party = [
"allauth",
"boto3",
"celery",
"crispy_forms",
"dateutil",
"django",
"django_filters",
"django_rest_passwordreset",
"djangoql",
"djqscsv",
"drf_spectacular",
"dry_rest_permissions",
"environ",
"freezegun",
"hardcopy",
"healthy_django",
"jsonschema",
"jwt",
"multiselectfield",
"phonenumber_field",
"phonenumbers",
"pytz",
"pywebpush",
"ratelimit",
"requests",
"rest_framework",
"rest_framework_nested",
"rest_framework_simplejwt",
"sentry_sdk",
"simple_history"
]