Skip to content

Commit

Permalink
Fixed: JENKINS-12648 - Results should be reported for failed/aborted …
Browse files Browse the repository at this point in the history
…builds as well (Reverted fix for JENKINS-12046 in v0.30)
  • Loading branch information
nullin committed Feb 15, 2012
1 parent 7ff1ba9 commit 523dfea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 3 additions & 0 deletions README
Expand Up @@ -19,6 +19,9 @@ Release Notes
### Future Releases
* JENKINS-9838 - Action --> HealthReportingAction

### v0.32
* Fixed: JENKINS-12648 - Results should be reported for failed/aborted builds as well (Reverted fix for JENKINS-12046 in v0.30)

### v0.31
* Fixed: JENKINS-12187 - Ignore testng XMLs (if any) from previous builds
* Fixed: JENKINS-12494 - NPE while parsing testng xml with empty full stacktrace and no short stacktrace (Benoit Guerin)
Expand Down
6 changes: 0 additions & 6 deletions src/main/java/hudson/plugins/testng/Publisher.java
Expand Up @@ -85,12 +85,6 @@ public boolean perform(AbstractBuild<?, ?> build, Launcher launcher,

PrintStream logger = listener.getLogger();
logger.println("TestNG Reports Processing: START");
if (build.getResult().isWorseThan(Result.UNSTABLE)) {
logger.println("Not looking for any TestNG results.");
return true;
}


logger.println("Looking for TestNG results report in workspace using pattern: "
+ reportFilenamePattern);
FilePath[] paths = locateReports(build.getWorkspace(), reportFilenamePattern);
Expand Down

0 comments on commit 523dfea

Please sign in to comment.