From b66a17197ee522ecff45a25170f40a375d8f088c Mon Sep 17 00:00:00 2001 From: Rene Nochebuena Date: Thu, 10 Apr 2025 08:30:19 -0600 Subject: [PATCH] Add paths for Go test and coverage reports in Sonar config This update includes `test-report.out` and `coverage.out` for improved test and coverage integration with SonarQube analysis. It ensures better reporting and alignment with project quality standards. --- sonar-project.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sonar-project.properties b/sonar-project.properties index 61d58a7..3e4456d 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -5,4 +5,6 @@ sonar.sources=. sonar.exclusions=**/*_test.go sonar.tests=. sonar.test.inclusions=**/*_test.go +sonar.go.tests.reportPaths=test-report.out +sonar.go.coverage.reportPaths=coverage.out sonar.qualitygate.wait=true \ No newline at end of file