-
Notifications
You must be signed in to change notification settings - Fork 7
/
.coveragerc
55 lines (54 loc) · 1.68 KB
/
.coveragerc
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
[run]
source =
./connect/api
./connect/authentication
./connect/common
omit =
./manage.py
./connect/__init__.py
./connect/asgi.py
./connect/wsgi.py
./connect/settings.py
./connect/urls.py
./connect/api/v1/__init__.py
./connect/api/apps.py
./connect/common/apps.py
./connect/authentication/apps.py
./connect/grpc/*
./connect/api/v1/tests/*
./connect/api/grpc/*
./connect/api/v1/swagger.py
./connect/authentication/apps.py
./connect/authentication/tests.py
./connect/authentication/signals.py
./connect/authentication/migrations/*
./connect/common/tests.py
./connect/common/apps.py
./connect/common/tests/*
./connect/common/tasks.py
./connect/common/signals.py
./connect/common/management/*
./connect/common/migrations/*
./connect/billing/__init__.py
./connect/billing/tests.py
./connect/billing/tests_billingv2.py
./connect/billing/migrations/*
./connect/billing/gateway.py
./connect/billing/gateways/*
./connect/template_projects/migrations/*
./connect/template_projects/tests.py
./connect/elastic/tests.py
./connect/api/v2/organizations/tests.py
./connect/api/v2/projects/tests.py
./connect/api/v2/internals/tests.py
./connect/common/gateways/rocket_gateway.py
./connect/billing/tests/tests.py
./connect/api/v1/internal/integrations/integrations_rest_client.py
./connect/api/v1/internal/chats/chats_rest_client.py
./connect/api/v1/internal/intelligence/intelligence_rest_client.py
./connect/api/v1/internal/flows/flows_rest_client.py
./connect/api/v1/project/serializers.py
Dockerfile
[report]
fail_under = 74
skip_empty = true