Skip to content

Commit

Permalink
Calling hubInstallModules in Installer class when running tests in DHS (
Browse files Browse the repository at this point in the history
  • Loading branch information
bsrikan authored and aebadirad committed Jan 18, 2019
1 parent 4650cfd commit b010fed
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class Installer extends HubTestBase {

private static Logger logger = LoggerFactory.getLogger(Installer.class);

public void setupProject() {
public void setupProject() {
createProjectDir();
}

Expand All @@ -41,9 +41,12 @@ public void bootstrapHub() {
// this throws exception right now.
} catch (Exception e) {
logger.warn("Upgrade threw an exception during test bootstrapping");

}
}
if(getHubAdminConfig().getIsProvisionedEnvironment()) {
installHubModules();
}
}

public static void main(String[] args) {
Expand Down

0 comments on commit b010fed

Please sign in to comment.