-
-
Notifications
You must be signed in to change notification settings - Fork 645
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
Implement Cobertura output option for #9275 #9325
Merged
stuhood
merged 3 commits into
pantsbuild:master
from
twitter:pliu/impl_cobertura_output_option
Mar 27, 2020
Merged
Implement Cobertura output option for #9275 #9325
stuhood
merged 3 commits into
pantsbuild:master
from
twitter:pliu/impl_cobertura_output_option
Mar 27, 2020
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
stuhood
changed the title
Implement Covertura output option for #9275
Implement Cobertura output option for #9275
Mar 18, 2020
wisechengyi
approved these changes
Mar 18, 2020
patliu85
force-pushed
the
pliu/impl_cobertura_output_option
branch
3 times, most recently
from
March 21, 2020 04:40
e71d730
to
204bc83
Compare
patliu85
force-pushed
the
pliu/impl_cobertura_output_option
branch
from
March 23, 2020 17:55
204bc83
to
452da48
Compare
stuhood
pushed a commit
that referenced
this pull request
Mar 28, 2020
Implement Cobertura output option for #9275 Add new option (`--scoverage-report-output-as-cobertura`) for triggering `CoberturaXmlWriter(...)` method call in `scoverage-report-generator_2.12-0.0.3.jar` to generate Cobertura output Generate Cobertura output (`.pants.d/test/junit/_runs/*/*/all/scoverage/reports/xml/cobertura.xml`) when `--scoverage-enable-scoverage --scoverage-report-output-as-cobertura` options are provided in pants command.
stuhood
pushed a commit
that referenced
this pull request
Mar 30, 2020
Implement Cobertura output option for #9275 Add new option (`--scoverage-report-output-as-cobertura`) for triggering `CoberturaXmlWriter(...)` method call in `scoverage-report-generator_2.12-0.0.3.jar` to generate Cobertura output Generate Cobertura output (`.pants.d/test/junit/_runs/*/*/all/scoverage/reports/xml/cobertura.xml`) when `--scoverage-enable-scoverage --scoverage-report-output-as-cobertura` options are provided in pants command.
stuhood
pushed a commit
that referenced
this pull request
Mar 30, 2020
### Problem Implement Cobertura output option for #9275 ### Solution Add new option (`--scoverage-report-output-as-cobertura`) for triggering `CoberturaXmlWriter(...)` method call in `scoverage-report-generator_2.12-0.0.3.jar` to generate Cobertura output ### Result Generate Cobertura output (`.pants.d/test/junit/_runs/*/*/all/scoverage/reports/xml/cobertura.xml`) when `--scoverage-enable-scoverage --scoverage-report-output-as-cobertura` options are provided in pants command.
wisechengyi
pushed a commit
that referenced
this pull request
May 4, 2020
### Problem Implement Cobertura output option for #9275 ### Solution Add new option (`--scoverage-report-output-as-cobertura`) for triggering `CoberturaXmlWriter(...)` method call in `scoverage-report-generator_2.12-0.0.3.jar` to generate Cobertura output ### Result Generate Cobertura output (`.pants.d/test/junit/_runs/*/*/all/scoverage/reports/xml/cobertura.xml`) when `--scoverage-enable-scoverage --scoverage-report-output-as-cobertura` options are provided in pants command.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Problem
Implement Cobertura output option for #9275
Solution
Add new option (
--scoverage-report-output-as-cobertura
) for triggeringCoberturaXmlWriter(...)
method call inscoverage-report-generator_2.12-0.0.3.jar
to generate Cobertura outputResult
Generate Cobertura output (
.pants.d/test/junit/_runs/*/*/all/scoverage/reports/xml/cobertura.xml
)when
--scoverage-enable-scoverage --scoverage-report-output-as-cobertura
options are provided in pants command.