Skip to content

Commit

Permalink
Disable Liquibase includeAll test in native for now
Browse files Browse the repository at this point in the history
Relates to #16292
  • Loading branch information
famod committed Apr 6, 2021
1 parent 153161c commit 5aa7d0d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@

@NativeImageTest
public class LiquibaseFunctionalityNativeIT extends LiquibaseFunctionalityTest {

@Override
protected boolean isIncludeAllExpectedToWork() {
return false;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,15 @@ public void testLiquibaseQuarkusFunctionality() {
.then()
.body(is(
"create-tables-1,test-1,create-view-inline,create-view-file-abs,create-view-file-rel,"
+ "includeAll-1,includeAll-2,"
+ (isIncludeAllExpectedToWork() ? "includeAll-1,includeAll-2," : "")
+ "json-create-tables-1,json-test-1,"
+ "sql-create-tables-1,sql-test-1,"
+ "yaml-create-tables-1,yaml-test-1,"
+ "00000000000000,00000000000001,00000000000002,"
+ "1613578374533-1,1613578374533-2,1613578374533-3"));
}

protected boolean isIncludeAllExpectedToWork() {
return true;
}
}

0 comments on commit 5aa7d0d

Please sign in to comment.