Some checks failed
CI - SharePoint Plugin with SonarQube / Test and SonarQube Analysis (push) Has been cancelled
31 lines
753 B
Properties
31 lines
753 B
Properties
# SonarQube Project Configuration for SharePoint Connector
|
|
|
|
# Project identification
|
|
sonar.projectKey=sharepoint-connector
|
|
sonar.projectName=SharePoint Connector Plugin
|
|
sonar.projectVersion=1.0
|
|
|
|
# Source code
|
|
sonar.sources=.
|
|
sonar.sourceEncoding=UTF-8
|
|
|
|
# Tests
|
|
sonar.tests=.
|
|
sonar.test.inclusions=test_*.py
|
|
|
|
# Exclusions
|
|
sonar.exclusions=venv/**,**/__pycache__/**,*.pyc,.venv/**,htmlcov/**,templates/**,static/**,**/migrations/**
|
|
|
|
# Python specific
|
|
sonar.python.version=3.11
|
|
sonar.python.coverage.reportPaths=coverage.xml
|
|
|
|
# Coverage exclusions (files that don't need coverage)
|
|
sonar.coverage.exclusions=test_*.py,**/__init__.py,**/migrations/**,clear_data.py
|
|
|
|
# Duplications
|
|
sonar.cpd.exclusions=test_*.py
|
|
|
|
# Analysis parameters
|
|
sonar.scm.provider=git
|