-
-
Notifications
You must be signed in to change notification settings - Fork 511
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): enable code coverage on Sonarcloud (#1518)
* Setup Sonarcloud Signed-off-by: Matthieu MOREL <[email protected]> * Update commons-test.mk * Update ci.yml.tmpl * Update main_test.go * Update ci-test-go.yml * Update ci-test-go.yml --------- Signed-off-by: Matthieu MOREL <[email protected]>
- Loading branch information
Showing
6 changed files
with
41 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Github organization linked to sonarcloud | ||
sonar.organization==testcontainers | ||
|
||
# Project key from sonarcloud dashboard for Github Action, otherwise pick a project key you like | ||
sonar.projectKey=testcontainers_testcontainers-go | ||
|
||
sonar.projectName=testcontainers-go | ||
sonar.projectVersion=v0.23.0 | ||
|
||
sonar.sources=. | ||
sonar.exclusions=**/*_test.go,**/vendor/**,**/testdata/* | ||
|
||
sonar.tests=. | ||
sonar.test.inclusions=**/*_test.go | ||
sonar.test.exclusions=**/vendor/** | ||
sonar.go.tests.reportPaths=TEST-*.xml | ||
sonar.go.coverage.reportPaths=coverage.out |