-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsonar-project.properties
More file actions
31 lines (24 loc) · 952 Bytes
/
sonar-project.properties
File metadata and controls
31 lines (24 loc) · 952 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
25
26
27
28
29
30
31
sonar.host.url=https://sonarcloud.io
sonar.projectKey=AI-agent-assembly_python-sdk
sonar.organization=ai-agent-assembly
sonar.issues.defaultAssigneeLogin=Bryant
# This is the name and version displayed in the SonarCloud UI.
sonar.projectName=agent-assembly-python-sdk
sonar.projectVersion=0.0.0
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
sonar.projectBaseDir=./
sonar.sources=agent_assembly/
sonar.tests=test/
# Python test coverage settings
sonar.python.file.suffixes=.py
sonar.python.version=3.12,3.13
sonar.python.coverage.reportPaths=coverage*.xml
#sonar.coverage.python.reportPaths=coverage*.xml
# Ignore by test coverage
sonar.coverage.exclusions=agent_assembly/types.py
# Ignore by general analyze
# sonar.exclusions=**/migrations/**
# Ignore some test files
# sonar.test.exclusions=tests/helpers/**
# Encoding of the source code. Default is default system encoding
sonar.sourceEncoding=UTF-8