From f3ad2d9add86c41f611fd1503fda943bcdebff5b Mon Sep 17 00:00:00 2001 From: GSRN Date: Wed, 17 Sep 2025 00:14:17 +0200 Subject: [PATCH] chore: Update SonarQube exclusion syntax in CI workflow for service-adapters ### Summary of Changes - Changed the SonarQube exclusion flag from `--sonar-exclusions` to `-Dsonar.exclusions` in the CI workflow for service-adapters to align with the correct syntax. ### Expected Results - Ensured proper configuration of SonarQube for accurate analysis and reporting in the CI process, enhancing quality assurance for the service-adapters module. --- .gitea/workflows/service-adapters.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/service-adapters.yml b/.gitea/workflows/service-adapters.yml index cbd6f88..680167e 100644 --- a/.gitea/workflows/service-adapters.yml +++ b/.gitea/workflows/service-adapters.yml @@ -127,7 +127,7 @@ jobs: --sonar-project-name="LabFusion Service Adapters" \ --sonar-python-coverage-report-paths=coverage.xml \ --sonar-sources=. \ - --sonar-exclusions=tests/**,htmlcov/**,__pycache__/**,*.pyc + -Dsonar.exclusions=tests/**,htmlcov/**,__pycache__/**,*.pyc - name: Test results summary