Hello everybody!
I've replicated jUnit plugin behavior to access that URL:
AggregatedTestResultAction testResultAction = build.getAction(
AggregatedTestResultAction.class);
List childReports = testResultAction.getChildReports();
for (ChildReport report : childReports) {
TestResult result
Thanks Daniel I'll take a look on it ;)
But, although using that new API, how could I get the full URL?
Thanks!
El viernes, 29 de agosto de 2014 13:30:10 UTC+2, Daniel Beck escribió:
>
> Just FYI build.getAggregatedTestResultAction had its signature changed in
> 1.577.
>
>
> http://javadoc.jen
Just FYI build.getAggregatedTestResultAction had its signature changed in 1.577.
http://javadoc.jenkins-ci.org/hudson/model/AbstractBuild.html#getAggregatedTestResultAction%28%29
On 29.08.2014, at 13:22, Manuel de la Peña wrote:
> Hi community
>
> I've debugging jenkins code to know how the fu
Hi community
I've debugging jenkins code to know how the full jUnit test result url is
generated.
That url can be from a matrix project with several axis, or a maven
project, or whatever.
Is there an easy way to compound that URL once I get the testResult list?
AggregatedTestResultAction aggr