Skip to content

Commit

Permalink
Added rebel.xml to .gitignore and fixed adding FlowTestResults action…
Browse files Browse the repository at this point in the history
… twice
  • Loading branch information
Tõnis Pool committed Aug 30, 2015
1 parent 54970b9 commit 7f1a265
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
/*.iml
work/

**/rebel.xml
## Directory-based project format:
.idea/
# if you remove the above rule, at least ignore the following:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,8 @@ public BuildStepMonitor getRequiredMonitorService() {

@Override
public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListener listener) throws InterruptedException, IOException {
FlowTestResults testResults = new FlowTestResults();
build.addAction(testResults);
FlowRun flowRun = (FlowRun) build;
FlowTestResults testResults = new FlowTestResults();
flowRun.addAction(testResults);
listener.getLogger().println("Starting to gather test results!");
try {
Expand Down

0 comments on commit 7f1a265

Please sign in to comment.