Skip to content

Commit

Permalink
Enable MariadbSharedDbIT (#5908)
Browse files Browse the repository at this point in the history
This commit re-enables the `MariadbSharedDbIT` and disables the
Java 21 test variant as Java 21 container images are not yet supported.
  • Loading branch information
onobc authored Aug 27, 2024
1 parent 65989eb commit 9264222
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

package org.springframework.cloud.dataflow.integration.test.db;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down Expand Up @@ -63,6 +64,7 @@ public void latestSharedDb() {

@Test
@DataflowMain
@Disabled("TODO: Enable once Java 21 images are supported")
public void latestSharedDbJdk21() {
log.info("Running testLatestSharedDb()");
// start defined database
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

package org.springframework.cloud.dataflow.integration.test.db;

import org.junit.jupiter.api.Disabled;
import org.springframework.cloud.dataflow.integration.test.tags.DatabaseShared;
import org.springframework.cloud.dataflow.integration.test.tags.Mariadb;
import org.springframework.cloud.dataflow.integration.test.tags.TagNames;
Expand All @@ -25,8 +24,6 @@
/**
* Database tests for {@code mariadb 10.3} using shared db.
*/
@Disabled("TODO: Boot3x followup Enable once Spring Cloud Skipper has successfully built and pushed its bits to dockerhub")
//TODO: Boot3x followup
@Mariadb
@DatabaseShared
@ActiveProfiles({TagNames.PROFILE_DB_SHARED})
Expand Down

0 comments on commit 9264222

Please sign in to comment.