From 91ce94a901a1c07440771f37405316a1959558d3 Mon Sep 17 00:00:00 2001 From: GSRN Date: Wed, 17 Sep 2025 00:10:44 +0200 Subject: [PATCH] chore: Fix SonarQube coverage report path in CI workflow ### Summary of Changes - Updated the SonarQube configuration in the CI workflow for service-adapters to correct the coverage report path from `--sonar-coverage-report-paths` to `--sonar-python-coverage-report-paths`. ### Expected Results - Ensured accurate coverage reporting for Python files in the CI process, enhancing the quality assurance measures for the service-adapters module. --- .gitea/workflows/service-adapters.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitea/workflows/service-adapters.yml b/.gitea/workflows/service-adapters.yml index 250bd02..cbd6f88 100644 --- a/.gitea/workflows/service-adapters.yml +++ b/.gitea/workflows/service-adapters.yml @@ -125,8 +125,7 @@ jobs: --sonar-token=${{ secrets.SONAR_TOKEN }} \ --sonar-project-key=labfusion-service-adapters \ --sonar-project-name="LabFusion Service Adapters" \ - --sonar-coverage-report-paths=coverage.xml \ - --sonar-python-coverage-reports=coverage.xml \ + --sonar-python-coverage-report-paths=coverage.xml \ --sonar-sources=. \ --sonar-exclusions=tests/**,htmlcov/**,__pycache__/**,*.pyc