summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Kirtland <jek@discorporate.us>2007-06-01 01:24:27 +0000
committerJason Kirtland <jek@discorporate.us>2007-06-01 01:24:27 +0000
commit2aa07d6d4d2ee2e810a95d5b6960fc58e012475c (patch)
tree800d54b20edea86eb693364a1f5073499ab42a12
parent0a713f408d2eded6856c7502b2950792ab460a91 (diff)
downloadsqlalchemy-2aa07d6d4d2ee2e810a95d5b6960fc58e012475c.tar.gz
- Pulling pyformat test for MySQL-python, which fails on 3 driver versions
(1.2.2b3, 1.2.2c1, 1.2.2)
-rw-r--r--test/engine/execute.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/engine/execute.py b/test/engine/execute.py
index af29fb2a5..33c252018 100644
--- a/test/engine/execute.py
+++ b/test/engine/execute.py
@@ -44,8 +44,10 @@ class ExecuteTest(testbase.PersistTest):
res = conn.execute("select * from users")
assert res.fetchall() == [(1, "jack"), (2, "ed"), (3, "horse"), (4, 'sally'), (5, None)]
conn.execute("delete from users")
-
- @testbase.supported('postgres', 'mysql')
+
+ # pyformat is supported for mysql, but skipping because a few driver
+ # versions have a bug that bombs out on this test. (1.2.2b3, 1.2.2c1, 1.2.2)
+ @testbase.supported('postgres')
def test_raw_python(self):
for conn in (testbase.db, testbase.db.connect()):
conn.execute("insert into users (user_id, user_name) values (%(id)s, %(name)s)", {'id':1, 'name':'jack'})