Add paths for Go test and coverage reports in Sonar config
Some checks failed
Go CI/CD / go-ci (push) Failing after 6m52s

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.
This commit is contained in:
Rene Nochebuena 2025-04-10 08:30:19 -06:00
parent 4557b8050c
commit b66a17197e
Signed by: Rene Nochebuena
GPG Key ID: A9FD83117EA538D8

View File

@ -5,4 +5,6 @@ sonar.sources=.
sonar.exclusions=**/*_test.go sonar.exclusions=**/*_test.go
sonar.tests=. sonar.tests=.
sonar.test.inclusions=**/*_test.go sonar.test.inclusions=**/*_test.go
sonar.go.tests.reportPaths=test-report.out
sonar.go.coverage.reportPaths=coverage.out
sonar.qualitygate.wait=true sonar.qualitygate.wait=true