]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
skip test_raw_qmark/sprintf on zxjdbc
authorPhilip Jenvey <pjenvey@underboss.org>
Tue, 23 Jun 2009 01:01:39 +0000 (01:01 +0000)
committerPhilip Jenvey <pjenvey@underboss.org>
Tue, 23 Jun 2009 01:01:39 +0000 (01:01 +0000)
test/engine/test_execute.py

index c4bf7eb6eb6e0656eaadbcf149e5c3fd04ac5560..779eda4d7fc8498ccd0991f3a3a3c513c5140fb3 100644 (file)
@@ -28,7 +28,7 @@ class ExecuteTest(TestBase):
     def teardown_class(cls):
         metadata.drop_all()
 
-    @testing.fails_on_everything_except('firebird', 'maxdb', 'sqlite', 'mysql+pyodbc')
+    @testing.fails_on_everything_except('firebird', 'maxdb', 'sqlite', 'mysql+pyodbc', '+zxjdbc')
     def test_raw_qmark(self):
         for conn in (testing.db, testing.db.connect()):
             conn.execute("insert into users (user_id, user_name) values (?, ?)", (1,"jack"))
@@ -41,6 +41,7 @@ class ExecuteTest(TestBase):
             conn.execute("delete from users")
 
     @testing.fails_on_everything_except('mysql+mysqldb', 'postgres')
+    @testing.fails_on('+zxjdbc', 'sprintf not supported')
     # some psycopg2 versions bomb this.
     def test_raw_sprintf(self):
         for conn in (testing.db, testing.db.connect()):