Skip to content
This repository was archived by the owner on May 12, 2021. It is now read-only.

Commit 98b50f2

Browse files
committed
Disabling MariaDB and MySQL tests, since they have CI problems.
1 parent 6004635 commit 98b50f2

File tree

8 files changed

+13
-0
lines changed

8 files changed

+13
-0
lines changed

extensions/entitystore-sql/src/test/java/org/apache/polygene/entitystore/sql/MariaDbEntityStoreTest.java

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
import org.jooq.SQLDialect;
3535
import org.junit.jupiter.api.AfterEach;
3636
import org.junit.jupiter.api.BeforeAll;
37+
import org.junit.jupiter.api.Disabled;
3738

3839
@Docker( image = "mariadb:10.1.21",
3940
ports = @Port( exposed = 8801, inner = 3306 ),
@@ -45,6 +46,7 @@
4546
waitFor = @WaitFor( value = "mariadb.org binary distribution", timeoutInMillis = 120000 ),
4647
newForEachCase = false
4748
)
49+
@Disabled
4850
public class MariaDbEntityStoreTest extends AbstractEntityStoreTest
4951
{
5052

extensions/entitystore-sql/src/test/java/org/apache/polygene/entitystore/sql/MariaDbEntityStoreTestSuite.java

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
import org.jooq.SQLDialect;
3434
import org.junit.jupiter.api.AfterEach;
3535
import org.junit.jupiter.api.BeforeAll;
36+
import org.junit.jupiter.api.Disabled;
3637

3738
@Docker( image = "mariadb:10.1.21",
3839
ports = @Port( exposed = 8801, inner = 3306 ),
@@ -44,6 +45,7 @@
4445
waitFor = @WaitFor( value = "mariadb.org binary distribution", timeoutInMillis = 120000 ),
4546
newForEachCase = false
4647
)
48+
@Disabled
4749
public class MariaDbEntityStoreTestSuite extends EntityStoreTestSuite
4850
{
4951
@BeforeAll

extensions/entitystore-sql/src/test/java/org/apache/polygene/entitystore/sql/MySQLEntityStoreTest.java

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
import org.jooq.SQLDialect;
3636
import org.junit.jupiter.api.AfterEach;
3737
import org.junit.jupiter.api.BeforeAll;
38+
import org.junit.jupiter.api.Disabled;
3839

3940
// If upgrade to MySQL 8, then these tests will fail due to some new authentication requirements.
4041
@Docker( image = "mysql:5.7.22",
@@ -47,6 +48,7 @@
4748
waitFor = @WaitFor( value = "ready for connections", timeoutInMillis = 90000 ),
4849
newForEachCase = false
4950
)
51+
@Disabled
5052
public class MySQLEntityStoreTest extends AbstractEntityStoreTest
5153
{
5254
@BeforeAll

extensions/entitystore-sql/src/test/java/org/apache/polygene/entitystore/sql/MySQLEntityStoreTestSuite.java

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
import org.jooq.SQLDialect;
3434
import org.junit.jupiter.api.AfterEach;
3535
import org.junit.jupiter.api.BeforeAll;
36+
import org.junit.jupiter.api.Disabled;
3637

3738
// If upgrade to MySQL 8, then these tests will fail due to some new authentication requirements.
3839
@Docker( image = "mysql:5.7.22",
@@ -45,6 +46,7 @@
4546
waitFor = @WaitFor( value = "mysqld: ready for connections", timeoutInMillis = 40000 ),
4647
newForEachCase = false
4748
)
49+
@Disabled
4850
public class MySQLEntityStoreTestSuite extends EntityStoreTestSuite
4951
{
5052
@BeforeAll

extensions/entitystore-sqlkv/src/test/java/org/apache/polygene/entitystore/sqlkv/MariaDbEntityStoreTest.java

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
import org.jooq.SQLDialect;
3535
import org.junit.jupiter.api.AfterEach;
3636
import org.junit.jupiter.api.BeforeAll;
37+
import org.junit.jupiter.api.Disabled;
3738

3839
@Docker( image = "mariadb:10.1.21",
3940
ports = @Port( exposed = 8801, inner = 3306 ),
@@ -45,6 +46,7 @@
4546
waitFor = @WaitFor( value = "mysqld: ready for connections", timeoutInMillis = 120000 ),
4647
newForEachCase = false
4748
)
49+
@Disabled
4850
public class MariaDbEntityStoreTest extends AbstractEntityStoreTest
4951
{
5052
@BeforeAll

extensions/entitystore-sqlkv/src/test/java/org/apache/polygene/entitystore/sqlkv/MariaDbEntityStoreTestSuite.java

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
waitFor = @WaitFor( value = "mysqld: ready for connections", timeoutInMillis = 120000),
4646
newForEachCase = false
4747
)
48+
@Disabled
4849
public class MariaDbEntityStoreTestSuite extends EntityStoreTestSuite
4950
{
5051
@BeforeAll

extensions/entitystore-sqlkv/src/test/java/org/apache/polygene/entitystore/sqlkv/MySQLEntityStoreTest.java

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
waitFor = @WaitFor( value = "mysqld: ready for connections", timeoutInMillis = 90000),
4848
newForEachCase = false
4949
)
50+
@Disabled
5051
public class MySQLEntityStoreTest extends AbstractEntityStoreTest
5152
{
5253
@BeforeAll

extensions/entitystore-sqlkv/src/test/java/org/apache/polygene/entitystore/sqlkv/MySQLEntityStoreTestSuite.java

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
waitFor = @WaitFor( value = "mysqld: ready for connections", timeoutInMillis = 90000),
4646
newForEachCase = false
4747
)
48+
@Disabled
4849
public class MySQLEntityStoreTestSuite extends EntityStoreTestSuite
4950
{
5051
@BeforeAll

0 commit comments

Comments
 (0)