Skip to content
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

[JENKINS-72970] Allow selecting XUnit in the web interface #118

Merged
merged 18 commits into from
Apr 23, 2024
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
ea22a1f
Add Parser.XUNIT to doFillParserItems
Ririshi Apr 5, 2024
0f8b6c5
Add ParserType enum property to Parser enum, take all test parsers in…
Ririshi Apr 12, 2024
5a6307e
Add ParserType javadoc
Ririshi Apr 12, 2024
75c12ad
Use new test case mapping of coverage-model 0.43.0.
uhafner Apr 22, 2024
2503732
Remove dead code.
uhafner Apr 23, 2024
1a2a683
Bump codecov/codecov-action from 4.1.1 to 4.3.0
dependabot[bot] Apr 10, 2024
f5219a2
Bump org.jenkins-ci.main:jenkins-core from 2.448 to 2.453
dependabot[bot] Apr 10, 2024
790dd23
Bump io.netty:netty-bom from 4.1.107.Final to 4.1.108.Final
dependabot[bot] Mar 22, 2024
0c3ea32
Bump org.apache.maven.plugins:maven-compiler-plugin
dependabot[bot] Mar 19, 2024
97ffc32
Bump org.jenkins-ci:acceptance-test-harness
dependabot[bot] Mar 11, 2024
26b2de0
Bump com.fasterxml.jackson.core:jackson-databind from 2.16.1 to 2.17.0
dependabot[bot] Mar 13, 2024
c0ea826
Bump org.jenkins-ci.tools:maven-hpi-plugin from 3.53 to 3.54
dependabot[bot] Apr 15, 2024
80c39bb
Bump arcmutate.git.version from 1.2.0 to 1.2.1
dependabot[bot] Apr 12, 2024
2e8e9ce
Bump io.jenkins.tools.incrementals:git-changelist-maven-extension
dependabot[bot] Apr 15, 2024
e5247ff
Bump org.jenkins-ci.main:jenkins-core from 2.453 to 2.454
dependabot[bot] Apr 17, 2024
c051f6c
Bump io.netty:netty-bom from 4.1.108.Final to 4.1.109.Final
dependabot[bot] Apr 16, 2024
c031c60
Bump edu.hm.hafner:codingstyle-pom from 3.44.0 to 4.5.0
dependabot[bot] Apr 15, 2024
af5e623
Bump io.jenkins.plugins:data-tables-api from 2.0.1-1 to 2.0.3-1
dependabot[bot] Apr 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@
add(options, Parser.PIT);
add(options, Parser.JUNIT);
add(options, Parser.NUNIT);
add(options, Parser.XUNIT);

Check warning on line 155 in plugin/src/main/java/io/jenkins/plugins/coverage/metrics/steps/CoverageTool.java

View workflow job for this annotation

GitHub Actions / pitest

A change can be made to line 155 without causing a test to fail

removed call to io/jenkins/plugins/coverage/metrics/steps/CoverageTool$CoverageToolDescriptor::add (no tests cover this line VoidMethodCallMutator)

Check warning on line 155 in plugin/src/main/java/io/jenkins/plugins/coverage/metrics/steps/CoverageTool.java

View check run for this annotation

ci.jenkins.io / Code Coverage

Not covered line

Line 155 is not covered by tests
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually, in the selection list of the available parsers it would make sense to show all parsers. Can you replace that with a lop (stream) of Parser.values(), then this will not happen again?

return options;
}
return new ListBoxModel();
Expand Down
Loading