The mariadbconnector driver is having sporadic interpreter
crashes within this test suite. hopefully the crashes
are specific to these tests else we'll have to remove
mariadb from CI.
Change-Id: Idb7a9521e795d39957bce45415013eb4e771e560
class EnumSetTest(
fixtures.TestBase, AssertsExecutionResults, AssertsCompiledSQL
):
-
- __only_on__ = "mysql", "mariadb"
+ # mariadb connector having issues with stability
+ __only_on__ = (
+ "mysql+mysqldb",
+ "mysql+pymysql",
+ "mariadb+mysqldb",
+ "mariadb+pymysql",
+ )
__dialect__ = mysql.dialect()
__backend__ = True