2017-07-05 21:02:30 +01:00
|
|
|
# branch name for the sonar analysis
|
2018-01-15 10:20:11 +00:00
|
|
|
sonar.branch=origin/master
|
2017-07-05 21:02:30 +01:00
|
|
|
|
|
|
|
# required metadata
|
|
|
|
sonar.projectKey=CORE
|
|
|
|
sonar.projectName=CORE
|
2018-01-15 10:20:11 +00:00
|
|
|
sonar.projectVersion=5.1
|
2017-07-05 21:02:30 +01:00
|
|
|
|
|
|
|
# define modules
|
|
|
|
sonar.modules=PythonLibrary
|
|
|
|
|
|
|
|
# Encoding of the source files
|
|
|
|
sonar.sourceEncoding=UTF-8
|
|
|
|
|
|
|
|
# scm provider
|
|
|
|
sonar.scm.provider=git
|
|
|
|
|
|
|
|
# python adapter library
|
2017-07-25 18:16:18 +01:00
|
|
|
PythonLibrary.sonar.projectBaseDir=daemon
|
2017-07-05 21:02:30 +01:00
|
|
|
PythonLibrary.sonar.language=py
|
2017-07-25 18:16:18 +01:00
|
|
|
PythonLibrary.sonar.sources=./core
|
|
|
|
PythonLibrary.sonar.tests=./tests
|
|
|
|
PythonLibrary.sonar.python.coverage.reportPath=coverage.xml
|