From: Mike Bayer Date: Thu, 3 Sep 2020 18:48:57 +0000 (-0400) Subject: Block non-mysqldb / pymysql from testing Enum X-Git-Tag: rel_1_4_0b1~128 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=55843040b1b4e1493e27051f5125fa322a43dc31;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Block non-mysqldb / pymysql from testing Enum 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 --- diff --git a/test/dialect/mysql/test_types.py b/test/dialect/mysql/test_types.py index bc5619cdbe..77a485d413 100644 --- a/test/dialect/mysql/test_types.py +++ b/test/dialect/mysql/test_types.py @@ -790,8 +790,13 @@ class JSONTest(fixtures.TestBase): 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