Skip to content

Commit fb135a3

Browse files
committed
Disable SequenceGeneratorDefaultSchemaTest for MySQL
I've created a separate issue for this: #1525
1 parent b85581f commit fb135a3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

hibernate-reactive-core/src/test/java/org/hibernate/reactive/SequenceGeneratorTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
import io.vertx.ext.unit.TestContext;
2828

2929
import static org.hibernate.reactive.containers.DatabaseConfiguration.DBType.COCKROACHDB;
30+
import static org.hibernate.reactive.containers.DatabaseConfiguration.DBType.MYSQL;
3031
import static org.hibernate.reactive.containers.DatabaseConfiguration.DBType.ORACLE;
3132
import static org.hibernate.reactive.containers.DatabaseConfiguration.dbType;
3233

@@ -70,8 +71,9 @@ public void testSequenceGenerator(TestContext context) {
7071
public static class SequenceGeneratorDefaultSchemaTest extends SequenceGeneratorTest {
7172

7273
// COCKROACHDB: we don't have permission to create schema in the CI!
74+
// MYSQL: See https://github.com/hibernate/hibernate-reactive/issues/1525
7375
@Rule
74-
public DatabaseSelectionRule dbRule = DatabaseSelectionRule.skipTestsFor( COCKROACHDB );
76+
public DatabaseSelectionRule dbRule = DatabaseSelectionRule.skipTestsFor( COCKROACHDB, MYSQL );
7577

7678
@Override
7779
protected Configuration constructConfiguration() {

0 commit comments

Comments
 (0)