-
Notifications
You must be signed in to change notification settings - Fork 1
/
sonar-project.properties
29 lines (23 loc) · 1.02 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
# must be unique in a given SonarQube instance
sonar.projectKey=suggestclasses
# this is the name and version displayed in the SonarQube UI.
sonar.projectName=SuggestClasses - Sistema de Horarios do CERES
sonar.projectVersion=1.3.4
sonar.organization=labens-github
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# This property is optional if sonar.modules is set.
sonar.sources=core
sonar.sources.inclusions=**/**.py
sonar.exclusions=**/tests/**, dados/**, suggestclasses/**, **/static/**, **/templates/**, **/migrations/**, **/__pycache__/**, **/admin.py, **/__init__.*, manage.py
# Language
sonar.language=python
sonar.python.version=3.8
sonar.scm.provider=git
# Encoding of the source code. Default is default system encoding
sonar.sourceEncoding=UTF-8
# Coverage / Unit Tests
sonar.tests=./core/tests/
sonar.test.inclusions=**/test_**.py, **/tests_**.py, **/tests.py
#sonar.python.xunit.reportPath=nosetests.xml
sonar.python.coverage.reportPaths=coverage.xml
sonar.python.coveragePlugin=cobertura