Skip to content

Commit

Permalink
yet another attempt at fixing E2E
Browse files Browse the repository at this point in the history
  • Loading branch information
arcuri82 committed Nov 6, 2024
1 parent fc6d227 commit b8bcbf2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ public void testFindOneOnGivenEndpoint(String endpoint) throws Throwable {
setOption(args, "generateMongoData", "true");
setOption(args, "extractMongoExecutionInfo", "true");

//issue with generated classes Instantiator and Accessor when running in Maven
setOption(args, "minimizeThresholdForLoss", "0.5");

Solution<RestIndividual> solution = initAndRun(args);

assertFalse(solution.getIndividuals().isEmpty());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ public void testRunEM() throws Throwable {
args.add("--extractMongoExecutionInfo");
args.add("true");

//issue with generated classes Instantiator and Accessor when running in Maven
setOption(args, "minimizeThresholdForLoss", "0.5");

Solution<RestIndividual> solution = initAndRun(args);

assertTrue(solution.getIndividuals().size() >= 1);
Expand Down

0 comments on commit b8bcbf2

Please sign in to comment.