-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[1.x] Add support to generate code coverage report with JaCoCo #1236
Merged
Conversation
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
Signed-off-by: Tianli Feng <[email protected]>
tlfeng
added
enhancement
Enhancement or improvement to existing feature or request
CI
CI related
Build Libraries & Interfaces
backport
PRs or issues specific to backporting features or enhancments
labels
Sep 13, 2021
✅ Gradle Wrapper Validation success dbc23db |
✅ DCO Check Passed dbc23db |
✅ Gradle Precommit success dbc23db |
tlfeng
changed the title
(target on v1.2) [1.x] Add support to generate code coverage report with JaCoCo
[1.x] Add support to generate code coverage report with JaCoCo
Sep 14, 2021
start gradle check |
saratvemulapalli
approved these changes
Sep 17, 2021
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @tlfeng for the change!
Thanks for your review of this PR and the previous one! 👍 |
5 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
backport
PRs or issues specific to backporting features or enhancments
Build Libraries & Interfaces
CI
CI related
enhancement
Enhancement or improvement to existing feature or request
v1.2.0
Issues related to version 1.2.0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Backport #971 and #1214 to
1.x
branchBuildPlugin
.codeCoverageReport
,codeCoverageReportForUnitTest
,codeCoverageReportForIntegrationTest
to generate code coverage report for all the tests, unit tests, and integration tests correspondingly.codeCoverageReport
task tocheck
task.Usage of the new Gradle tasks:
check
task: run./gradlew check -Dtests.coverage=true
for all the test:
./gradlew codeCoverageReport
,for unit tests only:
./gradlew codeCoverageReportForUnitTest
,for integration tests only:
./gradlew codeCoverageReportForIntegrationTest
XML
format only by default,to generate report in
HTML
format, add parameter-Dtests.coverage.report.html=true
, for example./gradlew codeCoverageReport -Dtests.coverage.report.html=true
,to generate report in
CSV
format, add parameter-Dtests.coverage.report.csv=true
,not generate report in
XML
format, add parameter-Dtests.coverage.report.xml=false
,Issues Resolved
#850
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.