-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsonar-project.properties
More file actions
53 lines (46 loc) · 2.16 KB
/
sonar-project.properties
File metadata and controls
53 lines (46 loc) · 2.16 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# ── Project Identity ──────────────────────────────────────────────
sonar.projectKey=selenium-python-framework
sonar.projectName=Selenium Python Automation Framework
sonar.organization=automationqa-yh
sonar.projectVersion=1.0.0
# ── Source & Test Directories ────────────────────────────────────
sonar.sources=pages,flows,core,api,utils,config,data,components
sonar.tests=tests
sonar.python.coverage.reportPaths=coverage.xml
sonar.python.xunit.reportPath=reports/junit_*.xml
# ── Exclusion Patterns ───────────────────────────────────────────
sonar.exclusions=\
**/__init__.py,\
**/*_locators.py,\
**/conftest.py,\
venv/**,\
.venv/**,\
build/**,\
dist/**,\
*.egg-info/**
sonar.coverage.exclusions=\
tests/**,\
venv/**,\
.venv/**,\
**/__init__.py,\
**/*_locators.py,\
**/conftest.py,\
config/constants.py,\
config/config_loader.py,\
core/driver/**,\
docker/**,\
jenkins/**,\
.github/**
# ── Language & Encoding ──────────────────────────────────────────
sonar.python.version=3.12
sonar.sourceEncoding=UTF-8
# ── Quality Gate ─────────────────────────────────────────────────
sonar.qualitygate.wait=true
sonar.qualitygate.timeout=300
# ── SCM Integration ──────────────────────────────────────────────
sonar.scm.disabled=false
sonar.scm.provider=git
# ── Analysis Settings ────────────────────────────────────────────
sonar.python.bandit.reportPaths=reports/bandit_report.html
sonar.python.ruff.reportPaths=reports/ruff_report.json
sonar.python.pylint.reportPaths=reports/pylint_report.txt