-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsonar-project.properties
62 lines (56 loc) · 1.44 KB
/
sonar-project.properties
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
58
59
60
61
62
# See more at:
# - https://docs.sonarcloud.io/advanced-setup/analysis-parameters
# - https://docs.sonarcloud.io/enriching/test-coverage-and-execution/
# Look at your Docker Compose file. You'll see `sonar` and `sonar-cli` services.
sonar.host.url=http://sonar:9000
# Project configuration
sonar.organization=juntossomosmais
sonar.projectKey=juntossomosmais_django-stomp-debug-callback
# Language
sonar.language=py
sonar.python.file.suffixes=py
sonar.sourceEncoding=UTF-8
# Patterns used to exclude some files from coverage report.
sonar.coverage.exclusions=\
**/__init__.py,\
**/settings.py,\
**/seed_db.py,\
**/model_admin.py,\
**/*/create_schema.py,\
**/wsgi.py,\
**/asgi.py,\
**/*/logging.py,\
manage.py,\
gunicorn_config.py,\
tests/**/*,\
**/tests/**/*,\
scripts/**/*,\
.tox/**/*,\
.venv/**/*,\
.mypy_cache/**/*,\
performance/**/*
# Patterns used to exclude some source files from the duplication detection mechanism.
sonar.cpd.exclusions=\
**/migrations/*.py,\
**/__init__.py,\
**/settings.py,\
**/seed_db.py,\
**/model_admin.py,\
**/*/create_schema.py,\
**/wsgi.py,\
**/asgi.py,\
**/*/logging.py,\
manage.py,\
gunicorn_config.py,\
tests/**/*,\
**/tests/**/*,\
scripts/**/*,\
.tox/**/*,\
.venv/**/*,\
.mypy_cache/**/*,\
performance/**/*
# Reports
sonar.python.xunit.reportPath=tests-reports/junit.xml
sonar.python.coverage.reportPaths=tests-reports/coverage.xml
# TSHOOT
sonar.verbose=false