chore: Fix SonarQube coverage report path in CI workflow
Some checks failed
Integration Tests / integration-tests (push) Failing after 27s
Integration Tests / performance-tests (push) Has been skipped
Docker Build and Push / build-and-push (push) Failing after 33s
Service Adapters (Python FastAPI) / test (3.11) (push) Failing after 49s
Service Adapters (Python FastAPI) / test (3.12) (push) Failing after 54s
Service Adapters (Python FastAPI) / test (3.13) (push) Failing after 50s
Service Adapters (Python FastAPI) / build (push) Has been skipped

### 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.
This commit is contained in:
GSRN
2025-09-17 00:10:44 +02:00
parent fbf0773d90
commit 91ce94a901

View File

@@ -125,8 +125,7 @@ jobs:
--sonar-token=${{ secrets.SONAR_TOKEN }} \ --sonar-token=${{ secrets.SONAR_TOKEN }} \
--sonar-project-key=labfusion-service-adapters \ --sonar-project-key=labfusion-service-adapters \
--sonar-project-name="LabFusion Service Adapters" \ --sonar-project-name="LabFusion Service Adapters" \
--sonar-coverage-report-paths=coverage.xml \ --sonar-python-coverage-report-paths=coverage.xml \
--sonar-python-coverage-reports=coverage.xml \
--sonar-sources=. \ --sonar-sources=. \
--sonar-exclusions=tests/**,htmlcov/**,__pycache__/**,*.pyc --sonar-exclusions=tests/**,htmlcov/**,__pycache__/**,*.pyc