Skip to content

Commit

Permalink
Merge pull request #1 from jenkinsci/release
Browse files Browse the repository at this point in the history
Initial provar automation plugin release
  • Loading branch information
mrdailey99 authored Nov 4, 2022
2 parents 0d5eab0 + c19b363 commit 7a5af45
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/io/jenkins/plugins/ProvarAutomation.java
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public boolean perform(AbstractBuild<?,?> build, Launcher launcher, BuildListene
buildFile += ".xml";
}

listener.getLogger().println("Provar Automation CLI: " + provarAutomationName);
listener.getLogger().println("Provar Automation CLI Version: " + provarAutomationName);
listener.getLogger().println("Project Folder: " + projectName);
listener.getLogger().println("Running the build file: " + buildFile);
listener.getLogger().println("Executing test plan: " + testPlan);
Expand Down
1 change: 0 additions & 1 deletion src/test/java/io/jenkins/plugins/ProvarAutomationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ public void testBuild() throws Exception {
ProvarAutomation builder = new ProvarAutomation(provarAutomationName, buildFile, testPlan, testFolder, environment, browser, secretsPassword, salesforceMetadataCacheSetting, resultsPathSetting, projectName);
project.getBuildersList().add(builder);
FreeStyleBuild build = jr.assertBuildStatus(Result.FAILURE, project.scheduleBuild2(quietPeriod).get());
// jr.assertLogContains("Buildfile: " + buildFile + " does not exist", build);
jr.assertLogContains("Running the build file: " + buildFile, build);
jr.assertLogContains("Executing test plan: " + testPlan, build);
jr.assertLogContains("Executing test folder: " + testFolder, build);
Expand Down

0 comments on commit 7a5af45

Please sign in to comment.