summaryrefslogtreecommitdiff
path: root/test/engine
diff options
context:
space:
mode:
authorHajime Nakagami <nakagami@gmail.com>2013-02-17 15:07:19 +0900
committerHajime Nakagami <nakagami@gmail.com>2013-02-17 15:07:19 +0900
commit60028c360768ca7386294cae082b10356034d725 (patch)
tree5c3b285d517abae9907661d38906bcf0b1954277 /test/engine
parenta521f212495c42c3f845690a98193ae5d1974a7e (diff)
downloadsqlalchemy-60028c360768ca7386294cae082b10356034d725.tar.gz
test for cymysql
Diffstat (limited to 'test/engine')
-rw-r--r--test/engine/test_execute.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/engine/test_execute.py b/test/engine/test_execute.py
index 69507eabe..d14cde245 100644
--- a/test/engine/test_execute.py
+++ b/test/engine/test_execute.py
@@ -110,7 +110,7 @@ class ExecuteTest(fixtures.TestBase):
# some psycopg2 versions bomb this.
@testing.fails_on_everything_except('mysql+mysqldb', 'mysql+pymysql',
- 'mysql+mysqlconnector', 'postgresql')
+ 'mysql+cymysql', 'mysql+mysqlconnector', 'postgresql')
@testing.fails_on('postgresql+zxjdbc', 'sprintf not supported')
def test_raw_sprintf(self):
def go(conn):
@@ -157,7 +157,7 @@ class ExecuteTest(fixtures.TestBase):
'db-api flaky')
@testing.fails_on_everything_except('postgresql+psycopg2',
'postgresql+pypostgresql', 'mysql+mysqlconnector',
- 'mysql+pymysql')
+ 'mysql+pymysql', 'mysql+cymysql')
def test_raw_python(self):
def go(conn):
conn.execute('insert into users (user_id, user_name) '