-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsonar-project.properties
More file actions
24 lines (20 loc) · 974 Bytes
/
sonar-project.properties
File metadata and controls
24 lines (20 loc) · 974 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
##### Configuration for on premise sonarqube.
# must be unique in a given SonarQube instance
sonar.organization=smartlab-br
sonar.projectKey=smartlab-br_davinci-api
# this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1.
sonar.projectName=Da Vinci API
sonar.projectVersion=1.0
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# This property is optional if sonar.modules is set.
sonar.sources=./app
sonar.exclusions=**/test/**, **/__pycache__/**, **/__init__.py, **/config/**, **/reports/**
# Encoding of the source code. Default is default system encoding
sonar.sourceEncoding=UTF-8
# Configuração de report de execução de testes
sonar.tests=./app/test
sonar.python.xunit.reportPath=app/test/report.xml
sonar.python.xunit.skipDetails=true
sonar.python.coverage.reportPaths=app/test/coverage/coverage.xml
# Configuração do linter
sonar.python.pylint.reportPath=./lint/report.txt